0

サブメニューHeaderからサブBackgroundページを削除するにはどうすればよいですか?Appearance

remove_submenu_pageThemesandでうまく機能Menusしますが、削除する方法が見つからないようですHeaderand 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' ); 
4

2 に答える 2

5

テーマの function.php で次のコードを使用します

add_action( 'after_setup_theme','remove_twentyeleven_options', 100 );
function remove_twentyeleven_options() {

remove_custom_background();
remove_custom_image_header();

}
于 2013-07-15T09:32:58.030 に答える
3

remove_custom_background();WordPress 3.4 で非推奨になりました

remove_theme_support( 'custom-background' );代わりに使用してください。

于 2014-10-21T14:48:12.190 に答える