Código PHP:
<div class="hpfeatured">
<?php include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss('http://miweb.com/feed/');
$maxitems = 5;
$items = array_slice($rss->items, 0, $maxitems);
?>
<?php if (!empty($items))
foreach ( $items as $item ) :
global $post;
$thumb = vp_get_thumb_url($post->post_content);
?>
<li>
<b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
<a href="<?php the_permalink() ?>">
<?php global $post; $thumb=vp_get_thumb_url($post->post_content);
if ($thumb!='')
echo '<img width=90px height=120px;" src="'.$thumb.'" alt="'. get_the_title().'" />'; ?>
<div class="div_bloque">
</a>
</div>
<p><?php echo $item['description']; ?></p>
</li>
<?php endforeach; ?>
</div>