Created
August 22, 2021 03:59
-
-
Save bagerathan/b9f5faabf7e72d83b5b98df76dfcd34f to your computer and use it in GitHub Desktop.
[Disable create new post] #wp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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