Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Test

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'dormitorios',
		'value'   => '$_REQUEST['dormitorios']',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'suites',
		'value'   => '$_REQUEST['suites']',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'banheiros',
		'value'   => '$_REQUEST['banheiros']',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'vagas',
		'value'   => '$_REQUEST['vagas']',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'valor',
		'value'   => '$_REQUEST['valor']',
		'compare' => 'BETWEEN',
		'type'    => 'NUMERIC',
	),
);