tax_query
$tax_query = array( 'relation' => 'OR', array( 'taxonomy' => 'primary', 'terms' => '2', 'field' => 'term_id', 'operator' => 'AND', 'include_children' => true, ), array( 'taxonomy' => 'category', 'terms' => 'myCat', 'field' => 'name', ), array( 'taxonomy' => 'post_tags', 'terms' => 'Hello Word', 'field' => 'name', ), );