Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

multiple product tag

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'product_tag',
		'terms'            => array( 'heavy', 'medium', 'relaxed', 'air-dry' ),
		'field'            => 'slug',
		'operator'         => 'AND',
	),
);