Show Your Favorite Tweets with WordPress


/ Published in: PHP
Save to your folder(s)

Just replace the URL in the fetch_rss line below with the RSS feed to your Twitter favorites. In fact this will work with any RSS feed.


Copy this code and paste it in your HTML
  1. <?php
  2. include_once(ABSPATH . WPINC . '/feed.php');
  3. $rss = fetch_feed('http://twitter.com/favorites/793830.rss');
  4. $maxitems = $rss->get_item_quantity(3);
  5. $rss_items = $rss->get_items(0, $maxitems);
  6. ?>
  7.  
  8. <ul>
  9. <?php if ($maxitems == 0) echo '<li>No items.</li>';
  10. else
  11. // Loop through each feed item and display each item as a hyperlink.
  12. foreach ( $rss_items as $item ) : ?>
  13. <li>
  14. <a href='<?php echo $item->get_permalink(); ?>'>
  15. <?php echo $item->get_title(); ?>
  16. </a>
  17. </li>
  18. <?php endforeach; ?>
  19. </ul>

URL: http://css-tricks.com/snippets/wordpress/display-rss-in-wordpress/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.