X

How to display RSS feed in WordPress theme

In order to display RSS feed on WordPress theme you need to include following code to your particular theme.

	<?php
		  include_once(ABSPATH.WPINC.'/rss.php');
		  wp_rss('http://feeds2.feedburner.com/vishmax', 5); 
	?>