Skip to content

Commit

Permalink
set capabilities on registering the wp_meetup 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 2644096 commit aa91ca4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions public_html/wp-content/plugins/wcpt/wcpt-meetup/meetup-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,19 @@ public function register_post_types() {
'show_ui' => true,
'can_export' => true,
'capability_type' => Meetup_Application::POST_TYPE,
'capabilities' => array(
// `read` and `edit_posts` are intentionally allowed, so organizers can edit their own posts (but not others').
'create_posts' => 'wordcamp_wrangle_meetups',
'delete_posts' => 'wordcamp_wrangle_meetups',
'delete_others_posts' => 'wordcamp_wrangle_meetups',
'delete_private_posts' => 'wordcamp_wrangle_meetups',
'delete_published_posts' => 'wordcamp_wrangle_meetups',
'edit_others_posts' => 'wordcamp_wrangle_meetups',
'edit_private_posts' => 'wordcamp_wrangle_meetups',
'edit_published_posts' => 'wordcamp_wrangle_meetups',
'publish_posts' => 'wordcamp_wrangle_meetups',
'read_private_posts' => 'wordcamp_wrangle_meetups',
),
'map_meta_cap' => true,
'hierarchical' => false,
'has_archive' => false,
Expand Down

0 comments on commit aa91ca4

Please sign in to comment.