RSS Template Variables
Design and Skin Customization
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><![CDATA[{$rss_title}]]></title>
<description>This is the {$rss_title} podcast<![CDATA[{$rss_desc}]]></description>
<link>{$rss_url}</link>
<image>
<url>http:
<title>Playgroundz.rocks</title>
<link>https:
</image>
<lastBuildDate>{$rss_builddate}</lastBuildDate>
<atom:link href="{$rss_feed_url}" rel="self" type="application/rss+xml" />
{foreach $_items as $item}
<item>
<title><![CDATA[{$item.title}]]></title>
<link>{$item.link}</link>
<enclosure url="http://www.playgroundz.rocks/webhosting/audio/stream/audio_file/{$item._item_id}" length="{$item.audio_file_size}" type="audio/mpeg"/>
<guid>{$item.guid}</guid>
<description><![CDATA[{$item.description}]]></description>
<pubDate>{$item.pubdate}</pubDate>
</item>
{/foreach}
</channel>
</rss>
I can only access datastore variables for audio, profiles, etc... in the bottom half of this file, but not the top half(outside the loop)
More specifically I am trying to call images inside the image tag....but I dont have access to the variables for profile_image, or song_image in that part of the file
updated by @michael-d: 08/23/19 06:31:34AM