Skip to content

Instantly share code, notes, and snippets.

@mzo84
Last active August 14, 2016 08:20
Show Gist options
  • Save mzo84/5a8782ee55092e68d3ed0c13e264f354 to your computer and use it in GitHub Desktop.
Save mzo84/5a8782ee55092e68d3ed0c13e264f354 to your computer and use it in GitHub Desktop.
wordpress - add custom taxonomies example
// Add to functions.php within the theme folder.
function create_my_taxonomies() {
register_taxonomy('actors', 'post', array(
'hierarchical' => false, 'label' => 'Actors',
'query_var' => true, 'rewrite' => true));
register_taxonomy('producers', 'post', array(
'hierarchical' => false, 'label' => 'Producers',
'query_var' => true, 'rewrite' => true));
}
add_action('init', 'create_my_taxonomies', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment