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