Share Article To

How to show External RSS Feed post on Your WordPress Site? Dont you have time to write post and want to show post from other site’s RSS feed on your site. No worry here is a quick solution for the.

<?php
//Include feed.php file
include_once(ABSPATH.WPINC.'/feed.php');
$rss = fetch_feed('http://feeds.feedburner.com/NdtvNews-TopStories');
$maxitems = $rss->get_item_quantity(5);
$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(); ?>'
title="<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>">
<?php //Get title
echo $item->get_title(); ?>
</a>
<?php //Get description
echo $item->get_description(); ?>
</li>
<?php endforeach; ?>
</ul>

Leave a Reply

Your email address will not be published. Required fields are marked *