Basic bbPress Forum Loop

This is your most basic bbPress forum loop

Use this in any template where you want the forum title and the forum content to spit out onto the page. I have intentionally left it very basic to start. It just spits out the forum title and the forum content.


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


			<?php while ( bbp_forums() ) : bbp_the_forum(); ?>
	
				<?php bbp_forum_title(); ?>
				<?php bbp_forum_content(); ?>
	
			<?php endwhile; ?>


        <?php endif; ?>
Comments