Skip to content

Instantly share code, notes, and snippets.

@DustinHartzler
Created April 19, 2016 11:01
Show Gist options
  • Save DustinHartzler/d0b254df783a5fe837251732b0383ccd to your computer and use it in GitHub Desktop.
Save DustinHartzler/d0b254df783a5fe837251732b0383ccd to your computer and use it in GitHub Desktop.
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