Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

users_clubprivado

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'nationality',
		'value'   => '$s',
		'compare' => 'LIKE',
		'type'    => 'CHAR',
	),
	array(
		'key'     => 'location_country',
		'value'   => '$s',
		'compare' => 'LIKE',
		'type'    => 'CHAR',
	),
	array(
		'key'     => 'location_city',
		'value'   => '$s',
		'compare' => 'LIKE',
		'type'    => 'CHAR',
	),
);