我试图使用EmbedRSS插件,但我使用php代码将其放入索引中。php文件无法工作。
[cetsEmbedRSS id=\'http://deannaschneider.wordpress.com\' itemcount=\'2\' itemauthor=\'1\' itemdate=\'1\' itemcontent=\'1\']
转换为php:
<?php echo do_shortcode (\'[cetsEmbedRSS id=\'http://deannaschneider.wordpress.com\' itemcount=\'2\' itemauthor=\'1\' itemdate=\'1\' itemcontent=\'1\']\'); ?>
我切换到Wordpress的内置rss,并使用了以下代码:
<?php include_once(ABSPATH . WPINC . \'/rss.php\');
wp_rss(\'http://www.ssupremacy.com/bbs/rss.php?fid=3\', 10); ?>
当我将“3”替换为“4”时,feed会显示,但在fid=3中不会显示。我想显示更多,然后只是一个链接列表。我想要论坛帖子、日期、作者等的摘录。
有什么想法吗?