/ Published in: PHP
URL: http://www.wprecipes.com/wordpress-tip-fetch-and-display-rss-feeds
Expand |
Embed | Plain Text
include_once(ABSPATH.WPINC.'/feed.php'); $feed = fetch_feed('http://feeds.feedburner.com/catswhoblog'); $limit = $feed->get_item_quantity(7); // specify number of items $items = $feed->get_items(0, $limit); // create an array of items } else foreach ($items as $item) : ?> <div> </a> </div> <div> <span>[...]</span> </div> <?php endforeach; ?>
You need to login to post a comment.
