Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

teste 2

// WP_Query arguments
$args = array(
	'post_type'              => array( 'product' ),
	'post_status'            => array( 'publish' ),
	'meta_query'             => array(
		array(
			'key'     => 'coordenador',
			'value'   => '89',
		),
	),
);

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