Disallow create_posts for the Pledges and Contributors (#78)

Pledges and contributors should not be creatable from the normal WP UI "Add New".

Fixes #77 
Props icaleb
This commit is contained in:
Caleb Burks 2019-11-03 14:21:16 -06:00 committed by Corey McKrill
parent 11b9bf3604
commit 1576a18d24
2 changed files with 8 additions and 0 deletions

View file

@ -65,6 +65,10 @@ function register_custom_post_type() {
'exclude_from_search' => true,
'publicly_queryable' => false,
'capability_type' => 'page',
'capabilities' => array(
'create_posts' => 'do_not_allow'
),
'map_meta_cap' => true,
'show_in_rest' => false, // todo Maybe turn this on later.
);

View file

@ -94,6 +94,10 @@ function register_custom_post_type() {
'exclude_from_search' => true,
'publicly_queryable' => true,
'capability_type' => 'page',
'capabilities' => array(
'create_posts' => 'do_not_allow'
),
'map_meta_cap' => true,
'show_in_rest' => false, // todo Maybe turn this on later.
);