Skip to content

Instantly share code, notes, and snippets.

@sisaacrussell
Forked from skyshab/functions.php
Last active February 21, 2017 14:36
Show Gist options
  • Save sisaacrussell/644fbd60a0417b6722a4355f4679dba1 to your computer and use it in GitHub Desktop.
Save sisaacrussell/644fbd60a0417b6722a4355f4679dba1 to your computer and use it in GitHub Desktop.
rename custom taxonomy
add_action( 'init', 'my_modify_taxonomy', 11 );
function my_modify_taxonomy() {
// get the arguments of the already-registered taxonomy
$my_category_args = get_taxonomy( 'project_category' );
// make changes
$my_category_args->rewrite['slug'] = 'genre';
// re-register the taxonomy
register_taxonomy( 'project_category', 'author', (array) $my_category_args );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment