Skip to content

Instantly share code, notes, and snippets.

@dlh01
Created February 1, 2023 03:33
Show Gist options
  • Save dlh01/0a06987c4220aaeb90a84abd6435a1ba to your computer and use it in GitHub Desktop.
Save dlh01/0a06987c4220aaeb90a84abd6435a1ba to your computer and use it in GitHub Desktop.
Caper example
<?php
Alley\WP\Caper::grant_to( 'editor' )->primitives( 'edit_theme_options' );
Alley\WP\Caper::deny_to( 'administrator' )->primitives( 'manage_options' );
Alley\WP\Caper::grant_to( 'author' )->caps_for( 'page' );
Alley\WP\Caper::deny_to( 'editor' )->caps_for( 'category' );
Alley\WP\Caper::grant_to( 'editor' )->caps_for( 'category' )->only( 'delete_terms' );
Alley\WP\Caper::deny( 'author' )->caps_for( 'page' )->except( 'delete_posts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment