如何在wordpress上隐藏自定义菜单和另一个子菜单?
我已经在wordpress上隐藏了一些子菜单
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\');
但如果我想删除自定义菜单remove_submenu_page( \'themes.php\', \'customize.php\' )
... 但它不能。。。任何人都可以帮我,怎么了???非常感谢。