फिल्टर $query->set('tax_query', ...)
में उपयोग करने का एक तरीका है pre_get_posts
? उदाहरण के लिए अगला कोड क्वेरी में फेरबदल नहीं कर रहा है। ध्यान दें कि मैं कस्टम खोज और खोज से $ टैक्सोनॉमी बना रहा हूं।
function custom_search_filter($query) {
...
// array('taxonomy' => 'category', 'field' => 'id', 'terms' => array( 41,42 ), 'operator' => 'IN')
$taxonomies = implode(',', $taxonomy_arr);
// /wordpress/25076/how-to-filter-wordpress-search-excluding-post-in-some-custom-taxonomies
$taxonomy_query = array('relation' => 'AND', $taxonomies);
$query->set('tax_query', $taxonomy_query);
}
return $query;
}
add_filter( 'pre_get_posts', 'custom_search_filter', 999 );
अग्रिम में धन्यवाद।
WP_Query
ऑब्जेक्ट को तर्क सेटिंग विधि में क्यों पास कर रहे हैं ?