Disallow create_posts for the Contributors CPT

This commit is contained in:
Caleb Burks 2019-11-03 14:13:06 -06:00
parent 72972951b3
commit 32bbded795

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