Code-Snippets-Functions/Execute a function on a child site/WooCommerce/change-the-slug-for-brand-archives.txt

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' );