Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Job Post Custom Fields Matching

Matches Primary Location and Job Posting Category

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'PrimaryLocation',
		'value'   => '$PrimaryLocation',
		'compare' => '=',
		'type'    => 'CHAR',
	),
	array(
		'key'     => 'JobPostingCategory',
		'value'   => '$JobPostingCategory',
		'compare' => '=',
		'type'    => 'CHAR',
	),
);