Cyberdave Posted December 14, 2010 Share Posted December 14, 2010 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 More sharing options...
Adam Posted December 14, 2010 Share Posted December 14, 2010 You mean the channel/image? Items within a feed can't have an image. Is this an RSS to HTML processor of some kind? Link to comment https://forums.phpfreaks.com/topic/221617-having-images-appear-in-my-rss-list/#findComment-1147144 Share on other sites More sharing options...
Cyberdave Posted December 14, 2010 Author Share Posted December 14, 2010 Yes, I guess it is. It's a block for Concrete5. Link to comment https://forums.phpfreaks.com/topic/221617-having-images-appear-in-my-rss-list/#findComment-1147232 Share on other sites More sharing options...
Adam Posted December 14, 2010 Share Posted December 14, 2010 So are you referring to the channel/image? i.e. Quote <channel> <title>...</title> <description>...</description> <image> <url>...</url> <link>...</link> </image> (...) Link to comment https://forums.phpfreaks.com/topic/221617-having-images-appear-in-my-rss-list/#findComment-1147239 Share on other sites More sharing options...
Cyberdave Posted December 14, 2010 Author Share Posted December 14, 2010 No, I have added the images manually in my WYSIWYG editor. Link to comment https://forums.phpfreaks.com/topic/221617-having-images-appear-in-my-rss-list/#findComment-1147436 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.