Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created October 31, 2018 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/64da4da0273273c7d9e2acb28602de71 to your computer and use it in GitHub Desktop.
Save jchristopher/64da4da0273273c7d9e2acb28602de71 to your computer and use it in GitHub Desktop.
Modify the managerial capability in OrganizeWP
<?php
add_filter( 'organizewp_manager_capability', function( $capability ) {
// Return the capability you'd like to use to grant access to OrganizeWP's settings.
return 'manage_options';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment