Banners in RSS Feed

Mark

Administrator
Staff member
sure, edit feed.php

find
PHP:
<description><?php echo $row['description']; ?></description>
replace with
PHP:
<description><?php echo $row['description']; ?><img src="<?php echo $row['banner_url']; ?>" alt="<?php echo $row['title']; ?>"/></description>
 

Doublezero

New Member
Thanks. I had to put the code inside CDATA for it to show.

PHP:
<description><?php echo $row['description']; ?>
<![CDATA[
<img src="<?php echo $row['banner_url']; ?>" alt="<?php echo $row['title']; ?>"/>
 
]]>
</description>
 
Top