This loop will spit out ALL the topics on your WordPress site.
<?php if ( bbp_has_topics() ) : ?> <?php while ( bbp_topics() ) : bbp_the_topic(); ?> <?php bbp_topic_title(); ?> <?php bbp_topic_content(); ?> <?php endwhile; ?> <?php endif; ?>
You probably don’t want all the topics. You probably just want the topics of a certain Forum. Well…if you have the ID of that forum do this.
<? $call_args = array( 'post_parent' => 54, 'posts_per_page' => -1, 'order' => 'DESC' ); ?> <?php if ( bbp_has_topics($call_args) ) : ?> <?php while ( bbp_topics() ) : bbp_the_topic(); ?> <?php bbp_topic_title(); ?> <?php bbp_topic_content(); ?> <?php endwhile; ?> <?php endif; ?>