You'll need to edit outputbody.php so to parse the description portion of each RSS feed and strip it of everything except the image:
Code:
if ($template=="" || $template=="default"){ //DEFAULT TEMPLATE
?>
<DIV class="rsscontainer">
<div class="rsstitle"><a href="<?php echo $item->get_permalink(); ?>"><?php echo $item->get_title(); ?></a></div>
<div class="rssdate"><?php echo $item->get_date('d M Y g:i a'); ?></div>
<div class="rssdescription"><?php echo $item->get_description(); ?></div>
</DIV>
<?
} //end default template
else if ($template=="titles"){ //"TITLES" TEMPLATE
?>
<DIV class="rsscontainer">
<div class="rsstitle"><a href="<?php echo $item->get_permalink(); ?>" target="_new"><?php echo $item->get_title(); ?></a></div>
<div>Category: <?php echo $item->get_category(); ?></div>
</DIV>
<?
}
The code in red represents the portion of the file you need to edit, more specifically:
Code:
<?php echo $item->get_description(); ?>
This part just outputs the entire RSS description. You will want to save it to a variable instead first, remove everything but the target image, then output the stripped down content. How exactly to do this depends on your familiarity with PHP...
Bookmarks