Forums

Join
bbPress Support ForumsPimp your PressDisplay All Tags

Info

Tags

Display All Tags

  1. I know this has been mentioned before - but I can't seem to find the original thread.

    How can I display every single tag within tags.php?

    I currently have Burning Tags installed for the front page. The header of the table in which they are contained has a link to the tags page - so I'd like users to be able to see all the tags.

    Peace, Michael

  2. I misunderstood your question. I thought you wanted the unfiltered list of tags, but you actually meant you wanted every tag on your forum.

    Anyway, here's the code:
    <?php bb_tag_heat_map( array( 'limit' => '' ) ); ?>

  3. No problem. I should've just posted here instead of asking on your plugin comment feed.

    Thanks for that - I have blended it with the bullet separation I mentioned before:
    <?php echo implode( ' &bull; ', bb_get_tag_heat_map( bb_get_top_tags( array( 'limit' => '') ), array( 'format' => 'array' ) ) ); ?>

    All seems to work okay - thanks. :)

  4. You must log in to post.