How to Display Any RSS Feed on Your WordPress Blog


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



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

URL: http://www.wpbeginner.com/wp-tutorials/how-to-display-any-rss-feed-on-your-wordpress-blog/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.