Prueba con este código
Código PHP:
include_once(ABSPATH . WPINC . '/rss.php');
// insert the feed URL here
$rss = @fetch_rss('http://spoily.com/feed/');
if ( isset($rss->items) && 0 != count($rss->items) ) {
echo '<ul>';
// set the number of items from the feed to display (10)
$rss->items = array_slice($rss->items, 0, 5);
foreach ($rss->items as $item ) {
echo '<li>';
echo '<a href="' . wp_filter_kses($item['link']) . '">' . wp_specialchars($item['title']) . '</a>';
echo '</li>';
}
echo '</ul>';
}
cambia
http://spoily.com/feed/ por el url del feed que deseas agregar y el 5 por el número de items que deseas mostrar.