Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

// WP_Query arguments
$args = array(
	'post_status'            => array( 'published' ),
	'meta_query'             => array(
		'relation' => 'AND',
		array(
			'key'     => 'market-language',
			'value'   => 'xxx',
			'compare' => '=',
		),
		array(
			'key'     => 'slug',
			'value'   => 'uuuuu',
		),
	),
);

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