有一个函数叫做fetch_feed, 还有一个代码示例,用于为该页面上的评论中提供的单个站点编写自定义代码。如果您愿意编写更多的自定义代码,那么很容易将其更改为从多个提要中提取,并将其限制为每个站点的1或2篇最新帖子。
Note 这种方法适用于低流量网站,但对于繁忙的网站,你会在网站的每次页面加载中点击这些RSS提要,所以你可能需要考虑实现缓存。
下面是获取和呈现单个RSS提要的代码,您应该能够从中进行操作。请参阅fetch_feed documentation 和this pages with more descrtiption of the fields in RSS 有关更多详细信息
<?php // Get RSS Feed(s)
include_once( ABSPATH . WPINC . \'/feed.php\' );
// Get a SimplePie feed object from the specified feed source.
$rss = fetch_feed( \'http://example.com/rss/feed/goes/here\' );
$maxitems = 0;
if ( ! is_wp_error( $rss ) ) : // Checks that the object is created correctly
// Figure out how many total items there are, but limit it to 5.
$maxitems = $rss->get_item_quantity( 5 );
// Build an array of all the items, starting with element 0 (first element).
$rss_items = $rss->get_items( 0, $maxitems );
endif;
?>
<ul>
<?php if ( $maxitems == 0 ) : ?>
<li><?php _e( \'No items\', \'wpdocs_textdomain\' ); ?></li>
<?php else : ?>
<?php // Loop through each feed item and display each item as a hyperlink. ?>
<?php foreach ( $rss_items as $item ) : ?>
<li>
<a href="<?php echo esc_url( $item->get_permalink() ); ?>"
title="<?php printf( __( \'Posted %s\', \'wpdocs_textdomain\' ), $item->get_date(\'j F Y | g:i a\') ); ?>">
<?php echo esc_html( $item->get_title() ); ?>
</a>
</li>
<?php endforeach; ?>
<?php endif; ?>
</ul>