Skip to content

Instantly share code, notes, and snippets.

@ekka21
Created August 10, 2012 19:08
Show Gist options
  • Save ekka21/3316966 to your computer and use it in GitHub Desktop.
Save ekka21/3316966 to your computer and use it in GitHub Desktop.
Wordpress: hide acf admin menu
/**
* Hide ACF menu item from the admin menu
*/
function hide_admin_menu()
{
global $current_user;
get_currentuserinfo();
if($current_user->user_login != 'admin')
{
echo '<style type="text/css">#toplevel_page_edit-post_type-acf{display:none;}</style>';
}
}
add_action('admin_head', 'hide_admin_menu');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment