Skip to content

Commit

Permalink
set capabilities on registering the wordcamp CPT
Browse files Browse the repository at this point in the history
  • Loading branch information
timiwahalahti authored and iandunn committed Sep 29, 2023
1 parent 814a7f9 commit 2644096
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,19 @@ function register_post_types() {
'show_ui' => true,
'can_export' => true,
'capability_type' => WCPT_POST_TYPE_ID,
'capabilities' => array(
// `read` and `edit_posts` are intentionally allowed, so organizers can edit their own posts (but not others').
'create_posts' => 'wordcamp_wrangle_wordcamps',
'delete_posts' => 'wordcamp_wrangle_wordcamps',
'delete_others_posts' => 'wordcamp_wrangle_wordcamps',
'delete_private_posts' => 'wordcamp_wrangle_wordcamps',
'delete_published_posts' => 'wordcamp_wrangle_wordcamps',
'edit_others_posts' => 'wordcamp_wrangle_wordcamps',
'edit_private_posts' => 'wordcamp_wrangle_wordcamps',
'edit_published_posts' => 'wordcamp_wrangle_wordcamps',
'publish_posts' => 'wordcamp_wrangle_wordcamps',
'read_private_posts' => 'wordcamp_wrangle_wordcamps',
),
'map_meta_cap' => true,
'hierarchical' => false,
'has_archive' => true,
Expand Down

0 comments on commit 2644096

Please sign in to comment.