Skip to content

Instantly share code, notes, and snippets.

@soderlind
Created April 25, 2012 21:03
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 soderlind/2493364 to your computer and use it in GitHub Desktop.
Save soderlind/2493364 to your computer and use it in GitHub Desktop.
An alternative "Hide ACF Menu from Clients"
add_action( 'admin_menu', function() {
if (! current_user_can('administrator')) {
remove_menu_page('edit.php?post_type=acf');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment