Created
June 23, 2023 15:04
-
-
Save Archie22is/b671630c2211cdee67dbaf473ce4ad18 to your computer and use it in GitHub Desktop.
Remove WordPress menus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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