如何在WordPress博客上显示任何RSS提要

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在WordPress博客上显示任何RSS提要相关的知识,希望对你有一定的参考价值。

  1. <?php include_once(ABSPATH.WPINC.'/feed.php');
  2. $rss = fetch_feed('http://feeds.feedburner.com/wpbeginner');
  3. $maxitems = $rss->get_item_quantity(5);
  4. $rss_items = $rss->get_items(0, $maxitems);
  5. ?>
  6. <ul>
  7. <?php if ($maxitems == 0) echo '<li>No items.</li>';
  8. else
  9. // Loop through each feed item and display each item as a hyperlink.
  10. foreach ( $rss_items as $item ) : ?>
  11. <li>
  12. <a href='<?php echo $item->get_permalink(); ?>'
  13. title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
  14. <?php echo $item->get_title(); ?></a>
  15. </li>
  16. <?php endforeach; ?>
  17. </ul>

以上是关于如何在WordPress博客上显示任何RSS提要的主要内容,如果未能解决你的问题,请参考以下文章

有两个用于 WordPress 的 RSS Feed URL

要求除了 RSS 提要之外的 Wordpress 博客的 httpauth 用户名和密码

RSS 提要未在我的 Wordpress 提要中的 Mailchimp 时事通讯中显示图像

如何找到特定网站的 RSS 提要?

如何使用 mailchimp 管理 wordpress 上的许多 rss 提要?

如何将 CORS 支持添加到 Wordpress RSS2 提要?