$blog_query
// WP_Query arguments
$args = array(
'post_type' => array( 'sbusiness' ),
'nopaging' => false,
'posts_per_page' => '15',
'ignore_sticky_posts' => true,
'order' => 'DESC',
'orderby' => 'rand',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'state_city',
'field' => 'term_id',
'operator' => 'IN',
'include_children' => true,
),
),
);
// The Query
$blog_query = new WP_Query( $args );
// The Loop
if ( $blog_query->have_posts() ) {
while ( $blog_query->have_posts() ) {
$blog_query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();