mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://woocommerce.com/document/managing-product-taxonomies/product-brands/#how-do-i-change-the-slug-for-brand-archives
5 lines
237 B
Text
5 lines
237 B
Text
function customise_product_brand_slug ( $tax ) {
|
|
$tax['rewrite']['slug'] = 'custom-slug'; // Replace 'custom-slug' with your desired slug.
|
|
return $tax;
|
|
}
|
|
add_filter( 'register_taxonomy_product_brand', 'customise_product_brand_slug' );
|