Indytheme Support

ถาม - ตอบ => Smart Variety => ข้อความที่เริ่มโดย: smart-variety288 ที่ 10/11/21 เวลา 00:20 น.

หัวข้อ: คอลัมน์ small-1 ต้องการแสดงแบบสุ่ม
เริ่มหัวข้อโดย: smart-variety288 ที่ 10/11/21 เวลา 00:20 น.
หากใช้ คอลัมน์ แบบ small-1 ตอนนี้น่าจะเรียงข้อมูแบบล่าสุดอยู่แถวแรก ตรงนี้หากต้องการแสดงผลแบบสุ่ม ต้องเพิ่มตรงไหน หรือแก้บรรทัดไหน อย่างไรครับ
หัวข้อ: Re: คอลัมน์ small-1 ต้องการแสดงแบบสุ่ม
เริ่มหัวข้อโดย: SUPPORT ที่ 10/11/21 เวลา 16:03 น.
ที่ไฟล์ template-parts/columns/small-1.php

ลองแก้โค้ดนี้ดูครับ
โค๊ด: [Select]
$the_query = new WP_Query(array(
        'cat' => $cat_id,
        'posts_per_page' => $posts_per_page,
    ));

แก้เป็น
โค๊ด: [Select]
$the_query = new WP_Query(array(
        'cat' => $cat_id,
        'posts_per_page' => $posts_per_page,
        'orderby' => 'rand',
    ));