bbPress Loop help

Posted by Cameron on Stack Overflow See other posts from Stack Overflow or by Cameron
Published on 2010-04-14T22:21:16Z Indexed on 2010/04/14 22:23 UTC
Read the original article Hit count: 368

Filed under:

Hi I have the following code:

<?php if ( bb_forums() ) : ?>


    <?php while ( bb_forum() ) : ?>

    <div class="box">

    <?php if (bb_get_forum_is_category()) : ?>


    <h3><a href="<?php forum_link(); ?>"><?php forum_name(); ?></a></h3>


    <?php continue; endif; ?>

    <ol>


    <li class="arrow f_unread">
        <a href="<?php forum_link(); ?>">
            <strong><?php forum_name(); ?></strong><br />
            <?php forum_topics(); ?> Topics / <?php forum_posts(); ?> Replies
        </a>
    </li>

    </ol>

    </div>


    <?php endwhile; ?>



<?php endif; // bb_forums() ?>

Struggling to get it to work how I want which is basically like this:

for each category do this:

<div class="box">
<h3>CAT</h3>
<ol>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>

so that div should be repeated for each block. if a set of forums has not category, then all of the code would be above would run but just no h3.

can anyone help thanks.

© Stack Overflow or respective owner

Related posts about bbpress