Skip to content

Instantly share code, notes, and snippets.

@ChrisFlannagan
Created November 18, 2016 18:52
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 ChrisFlannagan/4cd3bfd0e853cda3d3f7898c59428ac2 to your computer and use it in GitHub Desktop.
Save ChrisFlannagan/4cd3bfd0e853cda3d3f7898c59428ac2 to your computer and use it in GitHub Desktop.
<?php
register_taxonomy(
'members_tax',
'post',
array(
'label' => __( 'Members' ),
'hierarchical' => true,
'rewrite' => array( 'slug' => 'members-tax' ),
'capabilities' => array(
'assign_terms' => 'manage_options',
'edit_terms' => 'god',
'manage_terms' => 'god',
),
'show_in_nav_menus' => false,
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment