How can i fetch products by terms? in taxonomy pa_color i have a lot of colors inside and i can't write all names in array how i can fetch all products with all terms id?
'tax_query' => array( array(
'taxonomy' => 'pa_color',
'field' => 'slug',
'terms' => all,
'operator' => 'IN',
) )
) );
Try this:
'tax_query' => array( array(
'taxonomy' => 'pa_color',
'field' => 'slug',
'operator' => 'EXISTS',
) )
) );