WPが勝手に書くcustom-background-cssの背景色が邪魔
最近のWPでは、「サイトを見るときにツールバーを表示する※1」で、サイトの上部に勝手にスペース入れたり、
※1【ユーザー】→【プロフィール】→【ツールバー】のチェックをはずすと消えます
<body>に、背景色※2つけちゃうし(しかもheaderに直書きcss!)、
※2【外観】→【背景】で色を変更可能
カスタマイズするモノにとってはなんだかやっかい
「勝手に背景色」については、headerの直書きcssが許せないので、テーマ内のfunction.phpに以下を記述して消しちゃいます
add_action( ‘after_setup_theme’,’remove_twentyeleven_options’, 100 );
function remove_twentyeleven_options() {
remove_custom_background();
remove_custom_image_header();
remove_action(‘admin_menu’, ‘twentyeleven_theme_options_add_page’);
}
ちなみにテーマがtwentytenでも有効