WordPress-How to create a Taxonomy?
Here is an example of registering a “people” taxonomy function people_init() { // create a new taxonomy register_taxonomy ( 'people', 'post', array( 'label' => _('people'), 'rewrite' => array('slug' => 'person'), 'capabilities' => array( 'assign_terms' => 'edit_guides', 'edit_terms' => 'publish_guides', )...