Skip to content

Instantly share code, notes, and snippets.

@seamusleahy
Created May 21, 2013 17:06
Show Gist options
  • Save seamusleahy/5621434 to your computer and use it in GitHub Desktop.
Save seamusleahy/5621434 to your computer and use it in GitHub Desktop.
Remove ability to create new posts of a custom post type in WordPress.
<?php
register_post_type( 'custom_post_type_name', array(
'capabilities' => array(
'create_posts' => false,
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment