Skip to content

Instantly share code, notes, and snippets.

@dionysia
Created July 30, 2012 07:09
Show Gist options
  • Save dionysia/3205447 to your computer and use it in GitHub Desktop.
Save dionysia/3205447 to your computer and use it in GitHub Desktop.
A simple method for adding Twitter or any other rss-based content to a WordPress page
<?php
include_once(ABSPATH . WPINC . '/feed.php');
$rss = fetch_feed('http://twitter.com/favorites/793830.rss');
$maxitems = $rss->get_item_quantity(3);
$rss_items = $rss->get_items(0, $maxitems);
?>
<ul>
<?php if ($maxitems == 0) echo '<li>No items.</li>';
else
// Loop through each feed item and display each item as a hyperlink.
foreach ( $rss_items as $item ) : ?>
<li>
<a href='<?php echo $item->get_permalink(); ?>'>
<?php echo $item->get_title(); ?>
</a>
</li>
<?php endforeach; ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment