Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

User Meta Query

Custom query to view users with $metaVal in 2 different Meta Keys

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'description',
		'value'   => '$metaVal',
		'compare' => 'IN',
	),
	array(
		'key'     => 'Company_name',
		'value'   => '$metaVal',
		'compare' => 'IN',
	),
);