我正在尝试从搜索结果中删除那些不属于任何类别的产品。
我试过这个,但这不起作用。
add_action('pre_get_posts', 'products_pre_get_posts');
function products_pre_get_posts($query) {
if ( ! is_admin() && is_search() && is_shop() ) {
$query->set( 'tax_query', array(array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( '' ),
'operator' => 'NOT IN'
)));
}
}
答案 0 :(得分:4)
这对你有用:
add_action( 'pre_get_posts', 'products_pre_get_posts' );
function products_pre_get_posts( $query ) {
if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) {
$query->set( 'tax_query', array(
array(
'taxonomy' => 'product_cat',
'field' => 'term_id',
'terms' => get_terms( array( 'taxonomy' => 'product_cat', 'fields' => 'ids' ) )
)
));
}
}
在这种情况下,函数get_terms()
将返回一个术语ID数组,排除未分配给任何帖子的术语,因为参数'hide_empty'
默认为true
。