wordpress按文章评论数量排序的代码:
<?php query_posts(‘cat=-8&showposts=6&orderby=comment_count&order=DESC’); ?>
<?php while (have_posts()) : the_post();$k++; ?>
……
<?php endwhile; wp_reset_query();?>
以上代码中表示显示所有不属于ID等于8的分类下的文章,并且只显示评论数量最多的前6篇文章。
orderby=comment_count 就是按评论数量排序的参数。