Skip to content

Instantly share code, notes, and snippets.

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 Garconis/93a0bc9805f5f877389edf40865807f5 to your computer and use it in GitHub Desktop.
Save Garconis/93a0bc9805f5f877389edf40865807f5 to your computer and use it in GitHub Desktop.
Gravity Forms | Give the Editor role full access to Gravity Forms in the backend
<?php
// Give the Editor role full access to Gravity Forms
function fs_add_grav_forms(){
$role = get_role('editor');
$role->add_cap('gform_full_access');
}
add_action('admin_init','fs_add_grav_forms');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment