Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created March 7, 2012 04:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hsquareweb/1990876 to your computer and use it in GitHub Desktop.
Save hsquareweb/1990876 to your computer and use it in GitHub Desktop.
WP: Twitter Feed
<!-- twitter -->
<?php
include_once(ABSPATH . WPINC . '/feed.php');
$rss = fetch_feed('https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=DASHendateabuse');
$maxitems = $rss->get_item_quantity(2);
$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>
<!-- end twitter -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment