Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ingozoell/9913490 to your computer and use it in GitHub Desktop.
Save ingozoell/9913490 to your computer and use it in GitHub Desktop.
Allow Editors to chance theme options and Redux Framework https://codex.wordpress.org/Roles_and_Capabilities
/*
* Allow Editors to chance theme options and Redux Framework
* https://codex.wordpress.org/Roles_and_Capabilities
*
*
*/
// get the the role object
$editor = get_role('editor');
// add $cap capability to this role object
// $editor->add_cap ( 'edit_theme_options' );
$editor->add_cap ( 'manage_options' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment