如何在WordPress博客上显示任何RSS提要
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在WordPress博客上显示任何RSS提要相关的知识,希望对你有一定的参考价值。
$rss = fetch_feed('http://feeds.feedburner.com/wpbeginner'); $maxitems = $rss->get_item_quantity(5); $rss_items = $rss->get_items(0, $maxitems); ?> <ul> <?php if ($maxitems == 0) echo '<li>No items.</li>'; else // Loop through each feed item and display each item as a hyperlink. foreach ( $rss_items as $item ) : ?> <li> <a href='<?php echo $item->get_permalink(); ?>' title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'> <?php echo $item->get_title(); ?></a> </li> <?php endforeach; ?> </ul>
以上是关于如何在WordPress博客上显示任何RSS提要的主要内容,如果未能解决你的问题,请参考以下文章
有两个用于 WordPress 的 RSS Feed URL
要求除了 RSS 提要之外的 Wordpress 博客的 httpauth 用户名和密码
RSS 提要未在我的 Wordpress 提要中的 Mailchimp 时事通讯中显示图像