Forums

Join
bbPress Support ForumsRequests and FeedbackOrder topics by # of replies (popularity)

Info

Order topics by # of replies (popularity)

  1. 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!

  2. 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; ?>
  3. You must log in to post.