Re: How to list tags on forum.php
Actually … kinda yeah.
This works on any page <?php if (is_topic() ) : ?><?php topic_tags(); ?><?php endif; // is_topic() ?>
I have it in sidebar.php and it works fine. The reason it works is that it checks the page to see if it’s a topic and, if so, gets the tags.
I’m guessing you want something like this on your index page etc: Topic Name – Poster Name – Tags
You’ll need something like bb_get_topic_tags()
which appears to take a $topic_id
parameter.