[Solved] WP_Query Multiple Categories


Try this and see if it works.

$args = array(
    'post_type' => 'post',
    'tax_query' => array(
        'relation' => 'AND',
        array(
            'taxonomy' => 'category',
            'field'    => 'slug',
            'terms'    => array( 'vocalist' ),
        ),
        array(
             'relation' => 'OR',
             array(
                  'taxonomy' => 'category',
                  'field'    => 'slug',
                  'terms'    => array( 'pop' ),
             ),
             array(
                  'taxonomy' => 'category',
                  'field'    => 'slug',
                  'terms'    => array( 'rock' ),
             ),
        ),
    ),
);
$query = new WP_Query( $args );

0

solved WP_Query Multiple Categories