Skip to content

Instantly share code, notes, and snippets.

@andyknapp
Last active December 21, 2015 12:49
Show Gist options
  • Save andyknapp/6308674 to your computer and use it in GitHub Desktop.
Save andyknapp/6308674 to your computer and use it in GitHub Desktop.
Remove menu items from WP dashboard for all user roles expect admin
function ak_remove_menu_pages() {
if( !current_user_can('administrator') ) {
remove_menu_page('link-manager.php');
}
}
add_action( 'admin_menu', 'ak_remove_menu_pages' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment