RSS提要到一个wordpress页面

时间:2011-03-30 15:12:18

标签: php wordpress rss wordpress-plugin

我正在尝试在wordpress上的单个页面中实现RSS提要。我不想将它插入page.php模板。但是,当我将我的代码插入wordpress的html部分时,代码是唯一出现的内容。

我使用的代码是:

<?php if(function_exists('fetch_feed')) {

    include_once(ABSPATH . WPINC . '/feed.php');                    // include the required file
    $feed = fetch_feed('http://feeds.feedburner.com/jquery/');  // specify the source feed

    $limit = $feed->get_item_quantity(7); // specify number of items
    $items = $feed->get_items(0, $limit); // create an array of items

}
if ($limit == 0) echo '<div>The feed is either empty or unavailable.</div>';
else foreach ($items as $item) : ?>

<div>
    <a href="<?php echo $item->get_permalink(); ?>" 
      title="<?php echo $item->get_date('j F Y @ g:i a'); ?>">
        <?php echo $item->get_title(); ?>
    </a>
</div>
<div>
    <?php echo substr($item->get_description(), 0, 200); ?> 
    <span>[...]</span>
</div>

<?php endforeach; ?>

有没有办法在不进行极端编码的情况下将RSS Feed插入单个页面?

1 个答案:

答案 0 :(得分:0)

要在WP编辑器中执行PHP,您需要使用插件启用该功能,例如http://wordpress.org/extend/plugins/exec-php/