I’ve just checked out the query being used in the above wp_query
SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1 AND ( wp_term_relationships.term_taxonomy_id IN (43,44,45,46,47,48,57,58,59,60,61,62,63,64,65,75) ) AND wp_posts.post_type = 'features' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'private') GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 0, 5
If I want posts from just the term_taxonomy_id 75 for example, surely i should only be querying 75?? Where are all the other ids coming from??