MiBox Location Query
// WP_Query arguments $args = array( 'post_type' => array( 'locations' ), 'post_status' => array( 'publish' ), 'order' => 'ASC', 'tax_query' => array( array( 'taxonomy' => 'location', 'terms' => array( 'can', ' usa' ), 'field' => 'slug', 'include_children' => true, ), ), ); // The Query $query = new WP_Query( $args );