Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Created April 5, 2012 22:07
Show Gist options
  • Save jo-snips/2314556 to your computer and use it in GitHub Desktop.
Save jo-snips/2314556 to your computer and use it in GitHub Desktop.
Advanced Custom Fields: Hide ACF Menu
/*-------------------------------------------------------------------------------
Hide ACF menu item from the admin menu
-------------------------------------------------------------------------------*/
function hide_admin_menu() {
global $current_user;
get_currentuserinfo();
if($current_user->user_login != 'jonahcoyote') {
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