Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Yorlinq/d28c71e084a5ee88bfd0f82b1964d154 to your computer and use it in GitHub Desktop.
Save Yorlinq/d28c71e084a5ee88bfd0f82b1964d154 to your computer and use it in GitHub Desktop.
Remove 'Advanced Custom Fields' menu item from admin menu for non Super admins - Advanced Custom Fields
// Remove 'Advanced Custom Fields' menu item from admin menu for non Super admins
function yl_remove_admin_menu_custom_fields_for_non_super_admins() {
$user = wp_get_current_user();
if ($user && !is_super_admin()) {
remove_menu_page('edit.php?post_type=acf-field-group');
remove_menu_page('tools.php');
remove_menu_page('options-general.php');
}
}
add_action('admin_menu', 'yl_remove_admin_menu_custom_fields_for_non_super_admins');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment