Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Meta query example

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => '_term_id',
		'value'   => '119',
		'compare' => '=',
		'type'    => 'CHAR',
	),
	array(
		'key'     => '_post_type',
		'value'   => 'estate_property',
		'compare' => '=',
		'type'    => 'CHAR',
	),
	array(
		'key'     => '_position',
		'value'   => 'before',
		'compare' => '=',
		'type'    => 'CHAR',
	),
);