Forums

Join
bbPress Support ForumsTroubleshootingForum description on Topic page

Info

Forum description on Topic page

  1. Hi all, just wondering if it is possible to add the forum description on a topic page?
    I'm using bbPress 1.0.1 by the way...

  2. A little curiosity and trial and error will take you far when learning how to accomplish things.

    If you look on front-page.php you'll see it uses forum_description() so you can try
    <?php forum_description(); ?> in your topic.php template.

    If that doesn't work, you may need to specify the $forum_id
    <?php forum_description($forum_id); ?>

  3. You must log in to post.