Disallow create_posts for the Pledges CPT

This commit is contained in:
Caleb Burks 2019-11-03 13:40:34 -06:00
parent 11b9bf3604
commit 72972951b3

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.
);