此代码应该有效。我注释掉了你的一个提要。当我取消注释它时,它会停止正确排序。似乎有什么问题。它在浏览器中的格式也不像其他文件那样正确。
<ul>
<?php
$rsslist = array(
#\'http://www.pewenvironment.org/rss/campaigns-8589935316\',
\'http://www.ashrae.org/RssFeeds/ashrae.xml\',
\'http://www.districtenergy.org/blog/category/idea-activity/feed/\',
\'http://www.districtenergy.org/blog/category/industry-news/feed/\',
\'http://www.nrel.gov/news/press/rss/rss.xml\'
);
// Fetch all of the feeds into a simplePie mashup
$rss = fetch_feed($rsslist);
// Set the max items to either 10 or all items if there are less than 10
$maxitems = $rss->get_item_quantity(10);
// Get the items (0-10)
$rss_items = $rss->get_items(0, $maxitems);
// If there are no items, output that
if ($maxitems == 0) {
echo \'<li>No items.</li>\';
// Otherwise loop over the items
} else {
foreach ( $rss_items as $item ) { ?>
<li>
<?php echo $item->get_date() . $item->get_permalink(); ?>
</li>
<?php
}
}
?>
</ul>