Skip to content

Instantly share code, notes, and snippets.

@matfish2
Created March 7, 2012 13:05
Show Gist options
  • Save matfish2/1992996 to your computer and use it in GitHub Desktop.
Save matfish2/1992996 to your computer and use it in GitHub Desktop.
WP: Embedding RSS links
<ul>
<?php
include_once(ABSPATH.WPINC.'/rss.php'); // path to include script
$feed = fetch_rss('http://feeds.feedburner.com/blogowicz'); // specify feed url
$items = array_slice($feed->items, 0, 10);
?>
<?php if (!empty($items)) : ?>
<?php foreach ($items as $item) : ?>
<li><a href="<?php echo $item['link']; ?>" rel="nofollow"><?php echo $item['title']; ?></a></li>
<?php endforeach; ?>
<?php endif; ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment