Hi guys, I need some help!

I run an internet radio station and we release and record podcasts multiple times a week. Each podcast has it's own category/taxonomy term and subsequently it's own RSS feed. What I would like to do is display links to the podcast's RSS feeds(and itunes link) in each content type that I publish with that particular taxonomy term tagged to it.

What I'm looking for is if there is a way to set it so everytime I tag something as "QforQ" (just an example) it will display a field that I put some HTML coding in so it will display the RSS feed images with their links.

Is there a way to do this?

Comments

johsw’s picture

..in your node template - could be something like this:

foreach ($node->taxonomy as $k => $v) {
  print  "$k is $v\n";
}

then you can see what's in your array. You can then include a condition...

something like:

if ($v->name=='QforQ') {
  print "Here's some <b>html</b>";
}