web-dev-qa-db-ja.com

カスタマイザからStatic Front Pageオプションを削除する方法

Wordpress 4.1のTheme Customizerには Static Front Page というオプションがあります。私は私のテーマを(テーマのfront-page.php経由で)カスタムのフロントページを持つように設定したので、このオプションをここで利用できないようにします。

enter image description here

削除するにはどうすればいいですか。

2
Jack

このコードは仕事をします。

add_action('customize_register', 'themename_customize_register');
function themename_customize_register($wp_customize) {
  $wp_customize->remove_section( 'static_front_page' );
}

静的フロントページオプションを削除します。

詳細 ここ

5
Gyanendra Giri