aggrw is a widgetized version of aggr (my plugin that allows you to place the contents of an external feed into your pages or posts).
Unlike aggr, aggrw allows you to place the contents of an external feed into one of your sidebars.
It is limited to display one feed (it doesn’t have a cache so this is a way to reduce the load of your server).
Its use is trivial (I list here the obvious steps):
- download it
- unzip it
- upload it to your
wp-content/plugins/folder - activate it (plugin menu)
- place it somewhere (widget menu)
- give it a title (widget menu)
- give it a feed (widget menu)
- save the options in the widget menu

[...] aggrw (tags: wordpress plugins external rss feed widget sidebar) [...]
There’s a way to limit rss itens on this widget version, like with $item_count on aggr?
Thanks
Fernando: not at the moment (excluding changing the code, of course). I might add this feature in a future release.
thanks that’s so cool :)
I’ve modified a bit your code to get the item count by taking the function from aggr and copy paste it to aggrw :)
here //$item_count = 10;
$feed = fetch_rss($body);
$items = array_slice($feed->items, 0, $item_count);// and here
$channel = $feed->channel;
$feed_contents = ”’;
Nicolas: good. I’ll study your changes and possibly I’ll add them to aggrw. Thanks.