กล่าวว่าฉันมีข้อกำหนดด้านอนุกรมวิธานต่อไปนี้:
Term 1
Term 1.1
Term 1.2
Term 2
Term 2.1
ฉันจะได้รับเฉพาะโพสต์ที่กำหนดให้กับเทอม 1 และไม่รวมโพสต์ที่กำหนดให้กับเทอม 1.1 หรือเทอม 1.2
ตัวอย่างเช่น:
$pages = get_posts(array(
'post_type' => 'page',
'numberposts' => -1,
'tax_query' => array(
array(
'taxonomy' => 'taxonomy-name',
'field' => 'id',
'terms' => 1 // Where term_id of Term 1 is "1".
)
)
);
กำลังให้โพสต์ที่มีข้อกำหนด 1.1 และ 1.2 ให้ฉันด้วย
ขอบคุณ