I'm using the following WP_Query arguments array:
$args = array( 'post_type' => POST_TYPE,
'tax_query' => array(
'taxonomy' => TAX,
'field' => 'slug',
'terms' => TERM
),
'posts_per_page' => 2
);
The problem is this query displays all the posts from POST_TYPE which have a TAX (any TAX) assigned to them but it's not limiting it to the TERM (particularly one term) taxonomy!
I just want the posts from the specific TERM taxonomy and nothing more!