Skip to content

Instantly share code, notes, and snippets.

@Archie22is
Created June 23, 2023 15:04
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 Archie22is/b671630c2211cdee67dbaf473ce4ad18 to your computer and use it in GitHub Desktop.
Save Archie22is/b671630c2211cdee67dbaf473ce4ad18 to your computer and use it in GitHub Desktop.
Remove WordPress menus
<?php
function remove_item_from_menu() {
remove_menu_page( 'edit.php?post_type=elementor_library' ); // removes elementor addons , menu item added by plugins
remove_menu_page( 'edit-comments.php' ); // removes comment menu
remove_submenu_page('themes.php', 'theme-editor.php'); // remove submenu called theme edititor inside appearance
remove_submenu_page('themes.php', 'widgets.php'); // removes widgets submenu
}
add_action( 'admin_init', 'remove_item_from_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment