Since more than one person was interested, I thought I should post the code here. It’s not a lot of code. If my memory serves me correctly, someone on the forum posted this or referenced it when I was looking about a year ago.
I just made a Page and pasted the code in. You need a plugin to execute php code in a Post or Page. These are the feeds I use. You would just edit and put your feeds in the $streams array.
<phpcode>
<?php
require_once (ABSPATH . WPINC . '/rss-functions.php');
//feeds go here
$streams[] = "https://www.globalissues.org/WhatsNew/WhatsNew.xml";
$streams[] = "https://www.epha.org/backend.php3?id_rubrique=16";
$streams[] = "https://rss.news.yahoo.com/rss/topstories";
$streams[] = "https://feeds.feedburner.com/wxpn";
$streams[] = "https://dictionary.reference.com/wordoftheday/wotd.rss";
$streams[] = "https://www.theregister.co.uk/odds/excerpts.rss";
$streams[] = "https://www.theregister.co.uk/internet/excerpts.rss";
$streams[] = "https://www.theregister.co.uk/personal/excerpts.rss";
$streams[] = "https://www.theregister.co.uk/software/excerpts.rss";
$streams[] = "";
?>
<?php
$numElements = count($streams);
for($counter=0;$counter<$numElements;$counter++) {
$rss = @fetch_rss($streams[$counter]);
if ( isset($rss->items) && 0 != count($rss->items) ) {
?>
<h3><a href='<?php echo wp_filter_kses($rss->channel['link']); ?>'><?php echo wp_specialchars($rss->channel['title']); ?></a></h3>
<?php
$rss->items = array_slice($rss->items, 0, 3);
foreach ($rss->items as $item ) {
?>
<strong><a href='<?php echo wp_filter_kses($item['link']); ?>'><?php echo wp_specialchars($item['title']); ?></a> <?php echo human_time_diff( strtotime($item['pubdate'], time() ) ); ?> <?php _e('ago'); ?></strong><br /><?php echo $item['description']; ?><br />
<?php
}
}
}
?>
</phpcode>