这列出了我的自定义分类法模板页面中的文章:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
我怎样才能通过点评来订购这些帖子?
发布于 2011-07-22 01:07:56
WP查询从2.9开始就有一个comment_count参数。
所以:
query_posts(array('orderby' => 'comment_count', 'posts_per_page' => '10'));
if ( have_posts() ) : while ( have_posts() ) : the_post();
https://wordpress.stackexchange.com/questions/23723
复制相似问题