Using URL variables on a custom WP_Query
Background
I have a page with a custom template 'listen', with a custom wp_query running on it...
$custom_query_args = array(
'post_type' = 'post',
'tax_query' = array(
array(
'taxonomy' = 'post_format',
'field' = 'slug',
'terms' = array( 'post-format-audio' ),
),
),
);
The Problem
When I try and filter the posts on this page with url variables (example.com/listen/?category_name=thebigshow), nothing changes, even if I spell the category name incorrectly.
How can I use this method to filter the 'listen' page, by 'category_name' (show name)?
Thanks, Andy.