Skip to content

Instantly share code, notes, and snippets.

@hellofromtonya
Created January 19, 2017 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hellofromtonya/a02b3d2390c6c66c21e22dc69ec3e26c to your computer and use it in GitHub Desktop.
Save hellofromtonya/a02b3d2390c6c66c21e22dc69ec3e26c to your computer and use it in GitHub Desktop.
Bare minimum to register a custom taxonomy
$args = array(
'label' => __( 'Departments', 'teambios' ),
'hierarchical' => true,
);
register_taxonomy( 'department', 'team-bios', $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment