Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

get candidatos

$args = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'tipo_de_candidatura',
		'terms'            => 'gubernatura',
		'field'            => 'slug',
	),
	array(
		'taxonomy'         => 'partidos',
		'terms'            => array( '10', '4', '3', '2', '11', '9' ),
		'field'            => 'term_taxonomy_id',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'post_format',
		'terms'            => array( 'post-format-video', 'post-format-audio' ),
		'field'            => 'slug',
		'operator'         => 'IN',
	),
);