Advertisement
ten80snowboarder

Give Editors Access to Gravity Forms

Apr 23rd, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Give Editors Access to Gravity Forms
  2. // Source: http://highedwebtech.com/2011/12/16/wordpress-giving-editors-access-to-gravity-forms/
  3. function add_grav_forms(){
  4. $role = get_role('editor');
  5. $role->add_cap('gform_full_access');
  6. }
  7. add_action('admin_init','add_grav_forms');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement