Forums

Join
bbPress Support ForumsTroubleshootingMoving tags to the footer.php ?

Info

Tags

Moving tags to the footer.php ?

  1. i have put :- <?php topic_tags(); ?> on my footer.php , but it does not show the tags.

    is it possible to move these tags to the footer.php ... something has to be set first , but i dont know what... except it also has to relate to the topic.

    is this possible ?

  2. Hmm, I guess this function has to be used within topic look, otherwise it won't work - my only idea is to play with CSS - put the tags within the loop, but on the very bottom of it, then use CSS to move it even lower. :)

  3. Try this...

    <?php if (is_topic() ) : ?>
                    <?php topic_tags(); ?>
    <?php endif; // is_topic() ?>

    I use that in my sidebar.php file, and it works fine.

  4. You must log in to post.