Here’s the code I’m using to try and query a single taxonomy for one term, but exclude returned posts for that term that also belong to another.
In English, this is what I want: query ‘resource-type’ for ‘testimonies’, but not ‘testimonies’ that are also ‘audio’.
Tips to tweak this code to get it to work?
<?php
$testimonials_args = array(
'post_type' => 'resource',
'posts_per_page' => 1,
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'resource-type',
'field' => 'slug',
'terms' => array( 'testimonies' )
),
array(
'taxonomy' => 'resource-type',
'field' => 'slug',
'terms' => array( 'audio' ),
'operator' => 'NOT IN'
)
)
);
?>
I guess its because you are trying two conditions on one taxonomy, you can allways create a custom sql query, something like this:
or you can query just by one term and exclude by
has_term()
inside the loop something like this:no idea if this would work as i don’t have enough custom tax terms locally to test this right now, but what if you change the AND relation to OR ?
edited b/c i was reading in the comments at : http://ottopress.com/2010/wordpress-3-1-advanced-taxonomy-queries/ that what you are asking is pretty much impossible.
however, you could maybe query all audio testimonies, spit their IDs into an array. then query all testimonies and use the array you created in the posts__not_in parameter.
You would actually put your NON IN first and it will work how you want it to.