Info
- 2 posts
- 1 voice
- Started 7 months ago by highexistence
- Latest reply from highexistence
Order topics by # of replies (popularity)
-
- Posted 7 months ago #
How can I output the topics loop ordered by # of replies? I know I can grab them via wp_query, but I'm not sure how to also grab voices, latest poster avatar, etc. (to mimic the default topic loop).
Any ideas? Thank you!
-
- Posted 4 months ago #
I was able to do this with the following code:
<?php if ( bbp_has_topics( array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value', 'show_stickies' => false ) ) ) : ?></p> <?php bbp_get_template_part( 'bbpress/loop', 'topics' ); ?> <?php bbp_get_template_part( 'bbpress/pagination', 'topics' ); ?> <?php else : ?> <?php bbp_get_template_part( 'bbpress/feedback', 'no-topics' ); ?> <?php endif; ?> -
You must log in to post.