ฉันพบคำถามนี้:
มีวิธีใช้ $ query-> set ('tax_query' ในตัวกรอง pre_get_posts หรือไม่
ซึ่งดูเหมือนจะบ่งบอกว่าใช่คุณสามารถเปลี่ยนการสืบค้น taxonomy ในคลัง taxonomy ผ่าน pre_get_posts () ดังนั้นฉันจึงมากับ
add_action('pre_get_posts', 'kia_no_child_terms' );
function kia_no_child_terms( $wp_query ) {
if( is_tax() ) {
$wp_query->tax_query->queries[0]['include_children'] = 0;
}
}
เช่นกัน
add_action('pre_get_posts', 'kia_no_child_terms' );
function kia_no_child_terms( $wp_query ) {
if( is_tax() ) {
$tax_query = $wp_query->get( 'tax_query' );
$tax_query->queries[0]['include_children'] = 0;
$wp_query->set( 'tax_query', $tax_query );
}
}
เพื่อพยายามตั้งค่าพารามิเตอร์ include_children เป็น false ... และเพียงแค่เกี่ยวกับการรวมกันของทั้งสองฉันสามารถคิด อย่างไรก็ตามจนถึงตอนนี้การเก็บถาวรอนุกรมวิธานยังคงแสดงรายการในเทอมย่อย
และการทดสอบต่อไปนี้ดูเหมือนว่าจะเพิ่มการสอบถามภาษีเพิ่มเติมแทนที่จะเขียนทับพวกเขา ... ซึ่งทำให้ฉันสับสน
function dummy_test( $wp_query){
$tax_query = array(
'relation' => 'OR',
array(
'taxonomy' => 'tax1',
'terms' => array( 'term1', 'term2' ),
'field' => 'slug',
),
array(
'taxonomy' => 'tax2',
'terms' => array( 'term-a', 'term-b' ),
'field' => 'slug',
),
);
$wp_query->set( 'tax_query', $tax_query );
);
add_action('pre_get_posts','dummy_test');
SET ไม่ควรเขียนทับค่าปัจจุบันหรือไม่?