Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

country query

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'country',
		'terms'            => '1',
		'field'            => 'slug',
		'operator'         => 'AND',
	),
	array(
		'taxonomy'         => 'Type',
		'terms'            => '23',
		'field'            => 'slug',
		'operator'         => 'AND',
	),
);