Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Job Country

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'type',
		'terms'            => 'Permanent',
		'field'            => 'name',
		'operator'         => 'AND',
		'include_children' => false,
	),
	array(
		'taxonomy'         => 'jobcountry',
		'terms'            => 'UK',
		'field'            => 'name',
		'operator'         => 'AND',
	),
);