Puede SimplePie tomar imágenes de los feeds

Estoy usando este simplepie y he subido los archivos a mi host. Todo parece estar funcionando bien, excepto una cosa. El blog del que obtengo el feed contiene imágenes, y cuando uso el simplepie para ver el feed, las imágenes no aparecen. ¿Hay alguna manera de que aparezcan las imágenes cuando veo el blog con simplepie?

Ok, lo siento, soy nuevo en esto. Solo estoy usando el código directamente desde el sitio web para intentar ver el blog. Pondré el código en la parte inferior aquí. Entonces, como dije, solo estoy tratando de que aparezcan las imágenes que están en el blog del que estoy leyendo. Todo se ve genial, excepto eso.

--- Información del encabezado ---

<?php

// Make sure SimplePie is included. You may need to change this to match the location of simplepie.inc.
require_once('simplepie.inc');

// We'll process this feed with all of the default options.
$feed = new SimplePie();

// Set the feed to process.
$feed->set_feed_url('http://wordpress.homickdesign.com/feed/');

// Run SimplePie.
$feed->init();

// This makes sure that the content is sent to the browser as text/html and the UTF-8 character set (since we didn't change it).
$feed->handle_content_type();

// Let's begin our XHTML webpage code.  The DOCTYPE is supposed to be the very first thing, so we'll keep it on the same line as the closing-PHP tag.
?>

--- Código ---

<h2><a href="<?php echo $feed->get_permalink(); ?>"><?php echo $feed->get_description(); ?></a><br />
      <span>Latest news from Robert Homick</span></h2>       

        <?php
$c=1;   
foreach ($feed->get_items() as $item):
if($c <= 3){
?>

        <p><a href="<?php echo $item->get_permalink(); ?>"><?php echo $item->get_title(); ?></a><br />
        <?php echo $item->get_description(); ?><br />
        <span>Posted on <?php echo $item->get_date('j F Y | g:i a'); ?></span><br />
        <?php $c++;?>


<?php } endforeach;  ?>

Respuestas a la pregunta(4)

Su respuesta a la pregunta