Skip to content

Instantly share code, notes, and snippets.

@micahwave
Created January 25, 2014 00:11
Show Gist options
  • Save micahwave/8609529 to your computer and use it in GitHub Desktop.
Save micahwave/8609529 to your computer and use it in GitHub Desktop.
register_taxonomy( 'time_section', array( 'post', 'time_sponsored_post', 'time_collection' ), array(
'hierarchical' => false,
'labels' => $section_labels,
'capabilities' => array(
'manage_terms' => 'manage_sections',
'edit_terms' => 'manage_sections',
'delete_terms' => 'manage_sections',
'assign_terms' => 'edit_posts'
),
'rewrite' => array(
'slug' => 'section'
),
'public' => true,
'show_ui' => true
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment