Indytheme Support
ถาม - ตอบ => Smart Variety => ข้อความที่เริ่มโดย: smart-variety288 ที่ 10/11/21 เวลา 00:20 น.
-
หากใช้ คอลัมน์ แบบ small-1 ตอนนี้น่าจะเรียงข้อมูแบบล่าสุดอยู่แถวแรก ตรงนี้หากต้องการแสดงผลแบบสุ่ม ต้องเพิ่มตรงไหน หรือแก้บรรทัดไหน อย่างไรครับ
-
ที่ไฟล์ template-parts/columns/small-1.php
ลองแก้โค้ดนี้ดูครับ
$the_query = new WP_Query(array(
'cat' => $cat_id,
'posts_per_page' => $posts_per_page,
));
แก้เป็น
$the_query = new WP_Query(array(
'cat' => $cat_id,
'posts_per_page' => $posts_per_page,
'orderby' => 'rand',
));