Jump to content

Having Images Appear in My RSS List...


Cyberdave

Recommended Posts

How can I edit this code to have images appear in it?

 

<div id="rssSummaryList<?php echo intval($bID)?>" class="rssSummaryList">

<?php  if( strlen($title)>0 ){ ?>
<div class="rssSummaryListTitle"><?php echo $title?></div>
<?php  } ?>

<?php  
$rssObj=$controller;
$textHelper = Loader::helper("text"); 

if (!$dateFormat) {
$dateFormat = t('jS F, Y');
}

if( strlen($errorMsg)>0 ){
echo $errorMsg;
}else{

foreach($posts as $itemNumber=>$item) { 

	if( intval($itemNumber) >= intval($rssObj->itemsToDisplay) ) break;
	?>

	<div class="rssItem">
		<div class="rssItemTitle"> 
			<a href="<?php echo  $item->get_permalink(); ?>" <?php  if($rssObj->launchInNewWindow) echo 'target="_blank"' ?> >
				<?php echo substr ($item->get_title(), 0, 100); ?>
			</a>
		</div>
		<div class="rssItemDate"><?php echo  $item->get_date($dateFormat); ?></div>
		<div class="rssItemSummary">
			<?php 
			if( $rssObj->showSummary ){
				echo $item->get_description();
			}
			?> <a href="<?php echo  $item->get_permalink(); ?>" <?php  if($rssObj->launchInNewWindow) echo 'target="_blank"' ?> >Read more</a>
		</div>
	</div>

<?php   }  
}
?>
</div>

Link to comment
https://forums.phpfreaks.com/topic/221617-having-images-appear-in-my-rss-list/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.