PHP Wordpress - 获取RSS源,显示带循环的项目
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress - 获取RSS源,显示带循环的项目相关的知识,希望对你有一定的参考价值。
<?php
include_once(ABSPATH . WPINC . '/rss.php');
$feed = 'http://dangayle.com/feed/';
$rss = fetch_feed($feed);
if (!is_wp_error( $rss ) ) :
$maxitems = $rss->get_item_quantity(3);
$rss_items = $rss->get_items(0, $maxitems);
if ($rss_items):
echo "<ul>\n";
foreach ( $rss_items as $item ) :
//instead of a bunch of string concatenation or echoes, I prefer the terseness of printf
//(http://php.net/manual/en/function.printf.php)
printf('<li><a href="%s">%s</a><p>%s</p></li>',$item->get_permalink(),$item->get_title(),$item->get_description() );
endforeach;
echo "</ul>\n";
endif;
endif;
?>
以上是关于PHP Wordpress - 获取RSS源,显示带循环的项目的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress将帖子缩略图添加到RSS源
PHP 如何在WordPress博客上显示任何RSS源
通过禁用WordPress RSS源函数.php
从Wordpress分类页删除RSS源
仅在作者页面上显示WordPress作者RSS源
text Wordpress - 创建自定义RSS源 - 显示RSS源 - 设置RSS缓存到期/缓存生命周期