Wordpress 4.1のTheme Customizerには Static Front Page というオプションがあります。私は私のテーマを(テーマのfront-page.php
経由で)カスタムのフロントページを持つように設定したので、このオプションをここで利用できないようにします。
削除するにはどうすればいいですか。
このコードは仕事をします。
add_action('customize_register', 'themename_customize_register');
function themename_customize_register($wp_customize) {
$wp_customize->remove_section( 'static_front_page' );
}
静的フロントページオプションを削除します。
詳細 ここ