<?php//This file is needed to be able to use the wp_rss() function.
include_once(ABSPATH.WPINC.'/rss.php');functionreadRss($atts) {
extract(shortcode_atts(array("feed"=>'http://',
"num"=>'1',
), $atts));ob_start();wp_rss($feed, $num);returnob_get_clean();
}
add_shortcode('rss', 'readRss');