Created
February 1, 2023 03:33
-
-
Save dlh01/0a06987c4220aaeb90a84abd6435a1ba to your computer and use it in GitHub Desktop.
Caper example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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