WordPress利用feed博客RSS调用其它网站文章列表的方法。
<?php // Get RSS Feed(s)
include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss('http://www.logoyuan.com/feed');//在这添加所要调用网站的Feed地址
$maxitems = 10;
$items = array_slice($rss->items, 0, $maxitems);
?>
<ul>
<?php if (empty($items)) echo '<li>No items</li>';
else
foreach ( $items as $item ) : ?>
<li>
<a href='<?php echo $item['link']; ?>'
title='<?php echo $item['title']; ?>' target="_blank">
<?php echo mb_strimwidth($item['title'] , 0, 80, '…') ; ?>
</a>
</li>
<?php endforeach; ?>
</ul>