How to hide customize menu and another submenu on wordpress?
I already hide some submenu on wordpress like
function hiden() {
remove_submenu_page( 'themes.php', 'widgets.php' );//widget
remove_submenu_page( 'themes.php', 'theme-editor.php' ); //editor
remove_submenu_page( 'themes.php', 'theme_options' );} //theme-option
add_action('admin_head', 'hiden');
but if I want to remove customize menu remove_submenu_page( 'themes.php', 'customize.php' )
… but It can’t… Anybody can help me, whats wrong ???
Thank you
If you deal with wp menus you shoudl use admin_menu filter.
you can place it to your plugin or functions.php in your theme.
The correct page url of customize.php is
customize.php?return=%2Fwordpress%2Fwp-admin%2Fnav-menus.php
So to remove the submenu use: