Skip to content

Instantly share code, notes, and snippets.

@eagleyed
Created April 25, 2020 10:52
Show Gist options
  • Save eagleyed/ee2fdd03390f314ea1297d7390670702 to your computer and use it in GitHub Desktop.
Save eagleyed/ee2fdd03390f314ea1297d7390670702 to your computer and use it in GitHub Desktop.
Hide plugin menus or any admin page If you want
function hide_admin_menus_for_all( $context ) {
// Core Menus
remove_menu_page( 'index.php' ); //Dashboard
remove_menu_page( 'edit.php' ); //Posts
remove_menu_page( 'upload.php' ); //Media
//etc.
// Plugins
remove_menu_page( 'plugin-page-slug' );
}
add_action( 'admin_menu', 'hide_admin_menus_for_all', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment