Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Nested Ajax Query

$tax_query = array(
	'relation' => 'AND',
	array(
		'relation' => 'OR',
		array(
			'taxonomy'         => 'ust-yapi',
			'terms'            => '$ust_yapi_hid',
			'field'            => 'slug',
			'operator'         => 'IN',
			'include_children' => false,
		),
		array(
			'taxonomy'         => 'ulastirma',
			'terms'            => 'ulastirma_hid',
			'field'            => 'slug',
			'operator'         => 'IN',
		),
		array(
			'taxonomy'         => 'su-enerji',
			'terms'            => '$su_enerji_hid',
			'field'            => 'slug',
			'operator'         => 'IN',
		),
		array(
			'taxonomy'         => 'endustriyel',
			'terms'            => '$endustriyel_hid',
			'field'            => 'slug',
			'operator'         => 'IN',
		),
	),
	array(
		'taxonomy'         => 'proje_durum',
		'terms'            => '$proje_durum_hid',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
);