Skip to content

Instantly share code, notes, and snippets.

@elg0nz
Created February 1, 2010 01:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elg0nz/291384 to your computer and use it in GitHub Desktop.
Save elg0nz/291384 to your computer and use it in GitHub Desktop.
Rss Fetching with wordpress' fetch_feed
<?php include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_feed('http://twitter.com/statuses/user_timeline/13436616.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>
<?php echo ''.$item->get_date('j F Y | g:i a'); ?>
<a href='<?php echo $item->get_permalink(); ?>'
title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
<?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