我需要从主查询中排除具有特定自定义分类法的自定义帖子类型条目。我已经审查了SE上的其他类似条目,但无法使其正常工作。
这就是我所拥有的:
$args = array(
'post_type' => 'pojazdy', //my cpt name
'tax_query' => array(
array(
'taxonomy' => 'oferta_aktywna', //my custom taxonomy name
'field' => 'slug',
'terms' => 'sprzedane', //specific custom category
'operator' => 'NOT IN',
),
)
);
$query = new WP_Query( $args );