This lists the posts in my custom taxonomy template page:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
How can I order those posts by comment count?
This lists the posts in my custom taxonomy template page:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
How can I order those posts by comment count?
You must be logged in to post a comment.
A friend helped me with a solution that I could place in my functions.php file:
WP Query has a comment_count parameter since 2.9.
So: