Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

ewe neuređ

// WP_Query arguments
$args = array(
	'post_type'              => array( 'product' ),
	'tax_query'              => array(
		array(
			'taxonomy'         => 'product_cat',
			'terms'            => 'Neuređeno',
			'field'            => 'name',
			'include_children' => true,
		),
	),
	'meta_query'             => array(
		array(
			'key'     => '_supplier',
			'value'   => 'ewe',
		),
	),
);

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