Skip to content

Instantly share code, notes, and snippets.

@rickalee
Created April 8, 2014 18:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rickalee/10170090 to your computer and use it in GitHub Desktop.
Save rickalee/10170090 to your computer and use it in GitHub Desktop.
Gravity Forms Access to Editors
function add_grav_forms(){
$role_object = get_role( 'editor' );
$role_object->add_cap( 'edit_theme_options' );
$role = get_role('editor');
$role->add_cap('gform_full_access');
}
add_action('admin_init','add_grav_forms');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment