Doesnt Show Any Results
<?php
$query = array(
'tax_query' => array(
'relation' => 'AND',
array (
'taxonomy' => 'location',
'field' => 'slug',
'terms' => array( 'california', '' ),
),
array(
'taxonomy' => 'genre',
'field' => 'slug',
'terms' => array( 'comedy', '' ),
)
)
);
$query = new WP_Query();
?>
Doesnt Show Any Results :( No Posts are displayed, Need Help thanks