Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Custom fields

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'moto_price',
		'value'   => '1234',
		'compare' => '<=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'moto_featured_currency',
		'value'   => 'USD',
		'compare' => '=',
	),
);