Skip to content

Instantly share code, notes, and snippets.

@tiltos
Created March 26, 2012 22:04
Show Gist options
  • Save tiltos/2210113 to your computer and use it in GitHub Desktop.
Save tiltos/2210113 to your computer and use it in GitHub Desktop.
WP: Gravity Forms access for Editors
<?php
function add_grav_forms(){
$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