Say I have the following taxonomy terms:
Term 1
Term 1.1
Term 1.2
Term 2
Term 2.1
How can I get only posts that are assigned to Term 1 and not include those that are assigned to Term 1.1 or Term 1.2?
For example:
$pages = get_posts(array(
'post_type' => 'page',
'numberposts' => -1,
'tax_query' => array(
array(
'taxonomy' => 'taxonomy-name',
'field' => 'id',
'terms' => 1 // Where term_id of Term 1 is "1".
)
)
);
is also giving me posts that have Terms 1.1 and 1.2 assigned.
Thanks.