orderby => comment_counで降順表示
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<?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(); ?> |
新着順にコメントをソート
wp_list_comments()のパラメータreverse_top_level をtrueにすることでコメントを「新着順」にソートすることができます。
1 2 3 4 5 |
<?php wp_list_comments(array( ‘reverse_top_level’ => true, ‘style’ => ‘ol’, ‘avatar_size’=> 34 )); ?> |
コメント