I'm somewhat dense and new to vbulletin, so could someone help me out? I'm looking to add about 30 feedburner links to take the place of my standard rss links. How do I adjust this code for the multiple feeds?
PHP Code:
<if condition="$vboptions['externalrss']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] RSS Feed"
href="http://feeds.feedburner.com/yourforumurlcom" />
<if condition="$show['foruminfo'] OR $show['threadinfo']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed"
href="http://feeds.feedburner.com/yourforumurlcom-$foruminfo[forumid]" />
</if>
Do I do this:
PHP Code:
<if condition="$vboptions['externalrss']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] RSS Feed"
href="http://feeds.feedburner.com/yourforumurlcom" />
<if condition="$show['foruminfo'] OR $show['threadinfo']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed"
href="http://feeds.feedburner.com/yourforumurlcom-1"
href="http://feeds.feedburner.com/yourforumurlcom-2"
href="http://feeds.feedburner.com/yourforumurlcom-3"/>
</if>
I'm guessing not since it's not working for me