Display your favorite tweets with WordPress

Display your favorite tweets with WordPress

Paste this code where you want your favorite tweets to be displayed. Don’t forget to update your favorite feed url on line 3.

< ?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);

?>

< ?php if ($maxitems == 0) echo ‘

  • No items.’;

    else

    // Loop through each feed item and display each item as a hyperlink.

    foreach ( $rss_items as $item ) : ?>