Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wk-tax-filter

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'product_cat',
		'terms'            => 'wein',
		'field'            => 'slug',
		'operator'         => 'IN',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'product_cat',
		'terms'            => 'sparkling',
		'field'            => 'name',
		'operator'         => 'IN',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'product_cat',
		'terms'            => 'spirituisen',
		'field'            => 'name',
		'operator'         => 'IN',
		'include_children' => true,
	),
);