如何删除Header
并Background
从子页面Appearance
的子菜单?
remove_submenu_page
很好用Themes
和Menus
,但我似乎无法找到一种方法来删除Header
和Background
!
这是一个例子:
// working just fine:
remove_submenu_page( 'themes.php', 'themes.php' );
remove_submenu_page( 'themes.php', 'nav-menus.php' );
// not working:
remove_submenu_page( 'themes.php', 'themes.php?page=custom-header' );
remove_submenu_page( 'themes.php', 'themes.php?page=custom-background' );
Run Code Online (Sandbox Code Playgroud)
在主题的function.php中使用以下代码
add_action( 'after_setup_theme','remove_twentyeleven_options', 100 );
function remove_twentyeleven_options() {
remove_custom_background();
remove_custom_image_header();
}
Run Code Online (Sandbox Code Playgroud)