Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

profiles

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'profiles',
		'terms'            => array( '1', ' 2', ' 4' ),
		'field'            => 'term_id',
		'operator'         => 'IN',
		'include_children' => false,
	),
	array(
		'taxonomy'         => 'techniques',
		'terms'            => array( '10', ' 20', ' 40' ),
		'field'            => 'term_id',
		'operator'         => 'IN',
		'include_children' => false,
	),
	array(
		'taxonomy'         => 'experiences',
		'terms'            => array( '100', ' 200', ' 400' ),
		'field'            => 'term_id',
		'operator'         => 'IN',
		'include_children' => false,
	),
	array(
		'taxonomy'         => 'product_categories',
		'terms'            => '1000',
		'field'            => 'term_id',
		'operator'         => 'NOT IN',
		'include_children' => false,
	),
);