woof_main_query_tax_relations
Questo hook consente di impostare la logica ‘AND’ per qualsiasi tassonomia nella richiesta di ricerca WOOF.
Usalo nel file functions.php del tuo tema wp corrente:
add_filter('woof_main_query_tax_relations', 'my_woof_main_query_tax_relations');
function my_woof_main_query_tax_relations()
{
return array(
'product_cat' => 'AND'
);
}
Nell’esempio sopra mostrato si applica la logica ‘AND’ per le categorie di prodotti. La stessa cosa è possibile realizzarla per più tassonomie contemporaneamente:
add_filter('woof_main_query_tax_relations', 'my_woof_main_query_tax_relations');
function my_woof_main_query_tax_relations()
{
return array(
'product_cat' => 'AND',
'product_tag' => 'AND',
'pa_color' => 'AND'
);
}
Video: https://drive.google.com/file/d/0B4zUhfhZlonlNkVXMEZIdUxlWFU/view?usp=sharing