Forums

Join
bbPress Support ForumsTroubleshootingListing of the forums

Info

Tags

Listing of the forums

  1. Hello,

    i want to have a listing of the forums and i try this:

    <?php if ( $forums ) : ?>
    <?php if ( bb_forums() ) : ?>
    <?php bb_forum_pad( '<div class="nest">' ); ?>"><?php forum_name(); ?><?php bb_forum_pad( '</div>' ); ?>
    <?php endif; // bb_forums() ?>
    <?php endif; ?>
    but doesn't work. why?

    bye

  2. You have to first have the list of the forums for that to work.

    add this to the top of that:

    <?php $forums = get_forums(); ?>

  3. You must log in to post.