Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Featured Sniped Con Custom Brand

// WP_Query arguments
$args = array(
	'post_type'              => array( 'product' ),
	'tax_query'              => array(
		array(
			'taxonomy'         => 'product_brand',
			'terms'            => 'pioneer-dj',
			'field'            => 'slug',
		),
	),
);

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