操作
サポート #2513
未完了
廣僚
廣僚
お客様の声 表示順変更
サポート #2513:
お客様の声 表示順変更
開始日:
2026/04/13
期日:
2026/04/13 (3日 遅れ)
進捗率:
50%
予定工数:
対象ページURL:
操作
50%
archive-voice.php にある WP_Query のパラメータを修正しました。
// 修正前
$the_query = new WP_Query([
'post_type' => 'voice',
'posts_per_page' => -1,
'orderby' => 'rand',
]);
// 修正後
$the_query = new WP_Query([
'post_type' => 'voice',
'posts_per_page' => -1,
'orderby' => 'date',
'order' => 'DESC',
]);
合わせて、投稿を取得後リセットしていなかったので
以下をループ後に追加しました。
if ($the_query->have_posts()) : ?>
// 略
<?php endif; ?>
<?php wp_reset_postdata(); ?> // ←追加