Skip to content

Instantly share code, notes, and snippets.

@ahaywood
Created February 9, 2016 21:27
Show Gist options
  • Save ahaywood/abe5087e49f6b01e70e8 to your computer and use it in GitHub Desktop.
Save ahaywood/abe5087e49f6b01e70e8 to your computer and use it in GitHub Desktop.
PHP: WP - Register Custom Taxonomy
register_taxonomy(
'type_of_staff', // Taxonomy
'staff', // Object Type
array(
'label' => __( 'Type' ),
'rewrite' => array( 'slug' => 'type' ),
'hierarchical' => true, // Is this taxonomy hierarchical like categories or not hierarchical like tags.
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment