Created
March 23, 2012 07:13
-
-
Save hsquareweb/2167882 to your computer and use it in GitHub Desktop.
WP: Latest Tweets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Twitter Feed</h2> | |
<?php | |
include_once(ABSPATH . WPINC . '/feed.php'); | |
$rss = fetch_feed('https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=djakeed'); | |
$maxitems = $rss->get_item_quantity(3); | |
$rss_items = $rss->get_items(0, $maxitems); | |
?> | |
<ul id="twitter_update_list"> | |
<?php if ($maxitems == 0) echo '<li>No items.</li>'; | |
else 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