Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

race query

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'category',
		'terms'            => 'chien',
		'field'            => 'name',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'post_tag',
		'terms'            => 'forfait',
		'field'            => 'name',
		'operator'         => 'IN',
		'include_children' => false,
	),
	array(
		'taxonomy'         => 'post_tag',
		'terms'            => 'carte',
		'field'            => 'name',
		'operator'         => 'NOT IN',
		'include_children' => false,
	),
);