Skip to content

Instantly share code, notes, and snippets.

@ashsaraga
Last active January 31, 2018 22:57
Show Gist options
  • Save ashsaraga/b798c9c5ffe118500819e88d7466116f to your computer and use it in GitHub Desktop.
Save ashsaraga/b798c9c5ffe118500819e88d7466116f to your computer and use it in GitHub Desktop.
<?php
function remove_menus() {
remove_menu_page( 'index.php' ); // Dashboard
remove_menu_page( 'edit.php' ); // Posts
remove_menu_page( 'edit-comments.php' ); // Comments
remove_menu_page( 'themes.php' ); // Appearance
remove_menu_page( 'plugins.php' ); // Plugins
remove_menu_page( 'users.php' ); // Users
remove_menu_page( 'tools.php' ); // Tools
remove_menu_page( 'options-general.php' ); // Settings
}
add_action( 'admin_menu', 'remove_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment