Skip to content

Instantly share code, notes, and snippets.

@jrstaatsiii
Created December 10, 2013 15:25
Show Gist options
  • Save jrstaatsiii/7892405 to your computer and use it in GitHub Desktop.
Save jrstaatsiii/7892405 to your computer and use it in GitHub Desktop.
Provide a list of usernames who can edit custom field definitions here
function remove_acf_menu()
{
// provide a list of usernames who can edit custom field definitions here
$admins = array(
'admin',
'jrstaatsiii'
);
// get the current user
$current_user = wp_get_current_user();
// match and remove if needed
if( !in_array( $current_user->user_login, $admins ) )
{
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