Created
April 19, 2016 11:01
-
-
Save DustinHartzler/d0b254df783a5fe837251732b0383ccd to your computer and use it in GitHub Desktop.
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'] = 'manufacturers'; | |
$tax['labels']['name'] = 'Manufacturers'; | |
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