Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Tax query OR (countries)

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'countries',
		'terms'            => '1',
	),
	array(
		'taxonomy'         => 'countries',
		'operator'         => 'NOT EXISTS',
	),
);