i read the article about RSS_aggregator
http://wiki.lifetype.net/index.php/How_to_use_the_RSS_aggregator
This code work to display all the channel (in this case of yahoo):
{if $rss->parse("http://rss.news.yahoo.com/rss/topstories")}
{assign var=channel value=$rss->getChannel()}
<h1>{$channel->getTitle()}</h1>
<p>{$channel->getDescription()}</p>
<ul style="list-style: none;">
{foreach from=$rss->getItems() item=rssItem}
<li>
<a href="{$rssItem->getLink()}">{$rssItem->getTitle()}</a><br/>
<p>
{$rssItem->getDescription()}
</p>
</li>
{/foreach}
</ul>
{/if}
how cant I put only one post (the last) of a list of feeds?
