Services by Category
The Salon – display services by category
// WP_Query arguments $args = array( 'post_type' => array( 'service' ), 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'service_category', 'terms' => 'shampoo', 'field' => 'slug', 'operator' => 'IN', ), ), ); // The Query $query = new WP_Query( $args );