特定のカテゴリーの中でコメントの多い記事順に羅列する Ads X Bluesky Misskey はてブ 2012.04.25 Code <?php $args=array( 'cat' => 5,//カテゴリIDはここで指定 'orderby' => 'comment_count',//コメントの多い順 'order' => 'DESC', 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 6,//件数 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { ?> <ul> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul> <?php } wp_reset_query(); ?> Screen shot Note Description 特定のカテゴリに属する記事で、コメントの多い順に羅列する WordPress Ver. 3.3.1 Via How to Display Most Popular Posts from a Specific Category