woof_main_query_tax_relations
Questo hook consente di impostare la logica ‘AND‘ per tutte le tassonomie nella richiesta di ricerca WOOF.
Usalo nel tuo tema wp attuale functions.php file:
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 come applicare la logica ‘AND‘ per le categorie di prodotti. Lo stesso si può realizzare per più tassonomie allo stesso tempo:
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