Skip to content

Instantly share code, notes, and snippets.

@remcotolsma
Created June 29, 2014 12:18
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 remcotolsma/a43d6724e815816caa20 to your computer and use it in GitHub Desktop.
Save remcotolsma/a43d6724e815816caa20 to your computer and use it in GitHub Desktop.
Register post type with capability type.
<?php
function pronamic_custom_init() {
register_post_type( 'book', array(
'public' => true,
'label' => 'Books',
'capability_type' => 'book',
) );
}
add_action( 'init', 'pronamic_custom_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment