Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

taxonomy-query

Hace una busqueda de taxonomias

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'product_cat',
		'terms'            => 'MACHO',
		'field'            => 'name',
		'operator'         => 'AND',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'marcas',
		'terms'            => 'MACHO',
		'field'            => 'name',
		'operator'         => 'AND',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'pa_oficios',
		'terms'            => 'MACHOS',
		'field'            => 'name',
		'operator'         => 'AND',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'sinonimos',
		'terms'            => 'MACHO',
		'field'            => 'name',
		'operator'         => 'AND',
		'include_children' => true,
	),
);