Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

CITY SUB Q

$meta_query = array(
	'relation' => 'OR',
	array(
		'relation' => 'AND',
		array(
			'key'     => '_se_state',
			'value'   => 'MN',
			'compare' => '=',
			'type'    => 'CHAR',
		),
		array(
			'key'     => '_se_city',
			'value'   => 'Bloomington',
			'compare' => '=',
			'type'    => 'CHAR',
		),
	),
	array(
		'key'     => '_se_state',
		'value'   => '[ "mn", "NA"]',
		'compare' => 'IN',
		'type'    => 'CHAR',
	),
);