Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: How to reset loop? 2 loops on 1 page

$
0
0

Interesting… WP_query has a tag parameter, lets try resetting that

Try

if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'paged' => 1, 'posts_per_page' => $number_of_topics,  'tag' => '') ) ) :
		bbp_get_template_part( 'loop', 'mytopics' );
	else :
		bbp_get_template_part( 'feedback', 'no-topics' );
	endif;

Viewing all articles
Browse latest Browse all 3638

Trending Articles