Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

LOOP VST NOVO

// WP_Query arguments
$args = array(
	'post_type'              => array( 'pacotes' ),
	'order'                  => 'DESC',
	'meta_query'             => array(
		'relation' => 'AND',
		array(
			'key'     => 'preco_getpricenodejs',
			'value'   => '3',
			'compare' => '!=',
		),
	),
);

// The Query
$pacotesloop = new WP_Query( $args );