Created
February 9, 2016 21:27
-
-
Save ahaywood/abe5087e49f6b01e70e8 to your computer and use it in GitHub Desktop.
PHP: WP - Register Custom Taxonomy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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