[WordPress]記事をコメントの多い順にソート

WordPress
スポンサーリンク

orderby => comment_counで降順表示

<?php
$loop_comment_coun = new WP_Query(array(
	'post_type' => 'カスタム投稿スラッグ',
	'posts_per_page' => -1,
	'paged' => $paged,
	'orderby' => 'comment_count',
	'order' => 'DESC',
	'post_status' => 'publish'
));?>
<?php if ( $loop_comment_coun->have_posts() ):?>
<?php while ( $loop_comment_coun->have_posts() ) : $loop_comment_coun->the_post();?>
	ループ処理
<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>
<?php wp_reset_postdata(); ?>

コメント

タイトルとURLをコピーしました