Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Tax Query With Multiple Parameter

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'movie',
		'field'            => 'slug',
		'operator'         => 'AND',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'sports',
		'field'            => 'slug',
		'operator'         => 'EXISTS',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'food',
		'terms'            => array( 'apple', 'banana' ),
		'field'            => 'term_id',
		'operator'         => 'NOT IN',
		'include_children' => true,
	),
	array(
	),
);