Có một cách để sử dụng $query->set('tax_query', ...)
trong pre_get_posts
bộ lọc? ví dụ mã tiếp theo không làm thay đổi truy vấn. Lưu ý rằng tôi đang xây dựng các nguyên tắc phân loại $ từ và tìm kiếm tùy chỉnh.
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 );
Cảm ơn trước.
WP_Query
đối tượng vào một phương thức thiết lập đối số?