Skip to content

Instantly share code, notes, and snippets.

@bagerathan
Created August 22, 2021 03:59
Show Gist options
  • Save bagerathan/b9f5faabf7e72d83b5b98df76dfcd34f to your computer and use it in GitHub Desktop.
Save bagerathan/b9f5faabf7e72d83b5b98df76dfcd34f to your computer and use it in GitHub Desktop.
[Disable create new post] #wp
register_post_type( 'custom_post_type_name', array(
'capability_type' => 'post',
'capabilities' => array(
'create_posts' => false, // Removes support for the "Add New" function ( use 'do_not_allow' instead of false for multisite set ups )
),
'map_meta_cap' => true, // Set to `false`, if users are not allowed to edit/delete existing posts
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment