Skip to content

Instantly share code, notes, and snippets.

@intelliweb
Created December 12, 2014 03:45
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 intelliweb/e493e70cc1066a0cf2e8 to your computer and use it in GitHub Desktop.
Save intelliweb/e493e70cc1066a0cf2e8 to your computer and use it in GitHub Desktop.
GF: Remove admin menu item by user capability. Be sure to add custom capability first!
<?php
// Be sure to add custom capability first!
// Remove GF menu for anyone not having custom capability
add_action('admin_menu', 'intw_remove_gf_menus', 999);
function intw_remove_gf_menus() {
if( !current_user_can('gravityforms_full_access') ) {
remove_menu_page( 'gf_edit_forms' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment