mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://woocommerce.com/document/managing-product-taxonomies/product-brands/#how-do-i-order-the-brands-on-the-front-end-as-showcased-on-the-admin-panel
5 lines
158 B
Text
5 lines
158 B
Text
add_filter( 'woocommerce_sortable_taxonomies','wt_sort_brands' );
|
|
function wt_sort_brands( $sortable ) {
|
|
$sortable[] = 'product_brand';
|
|
return $sortable;
|
|
}
|