This is a proper array to call a post type, taxonomy, and term into a wp_query in an RSS file
$args = array(
'post_type' => 'shows' ,
'orderby' => 'date' ,
'order' => 'DESC' ,
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'show',
'field' => 'tag_ID',
'terms' => '3'
)
)
);
$q = new WP_Query($args);
while($q->have_posts()) : $q->the_post(); ?>