Created
July 29, 2016 18:29
-
-
Save DustinHartzler/f277cccdf490f7537dc3fba90b7e2e17 to your computer and use it in GitHub Desktop.
Brands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function customise_product_brand_slug ( $tax ) { | |
$tax['rewrite']['slug'] = 'artists'; | |
$tax['labels']['name'] = 'Brands'; | |
return $tax; | |
} | |
add_filter( 'register_taxonomy_product_brand', 'customise_product_brand_slug' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment