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
Share on other sites

So are you referring to the channel/image? i.e.

 

<channel>

    <title>...</title>

    <description>...</description>

    <image>

        <url>...</url>

        <link>...</link>

    </image>

    (...)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.