Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

filter tax query

$filter_tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'categoria',
		'terms'            => 'array($curso)',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'eventos',
		'terms'            => 'array($local)',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'formacao',
		'terms'            => 'array($pilar)',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
);