Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

H2R staff tax query

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'sqw-staff-location',
		'terms'            => 'auckland',
		'field'            => 'slug',
		'include_children' => false,
	),
	array(
		'taxonomy'         => 'sqw-staff-position',
		'terms'            => 'hr-od-and-ld-specialist',
		'field'            => 'slug',
		'include_children' => false,
	),
);