Code-Snippets-Functions/Execute a function on a child site/WooCommerce/order-the-brands-on-the-front-end-as-showcased-on-the-admin-panel.txt

5 lines
158 B
Text

add_filter( 'woocommerce_sortable_taxonomies','wt_sort_brands' );
function wt_sort_brands( $sortable ) {
$sortable[] = 'product_brand';
return $sortable;
}