Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Last active October 25, 2021 05:54
Show Gist options
  • Save tdmrhn/3e09db66f9c3794bb0dec24114de2ed8 to your computer and use it in GitHub Desktop.
Save tdmrhn/3e09db66f9c3794bb0dec24114de2ed8 to your computer and use it in GitHub Desktop.
Blocksy Taxonomies Slug Rewrite
<?php
add_filter( 'register_taxonomy_args', function ( $args, $taxonomy ) {
if ( 'blc-aff-categories' === $taxonomy ) {
$args['rewrite']['slug'] = 'affiliate-category';
}
return $args;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment