1

ジェネシスのカスタマイザーセクションを削除するのを手伝ってもらえますか? ジェネシスのテーマ カスタマイザーからカラー セクションを削除したいです。多くのコードを試しましたが、現在は機能しています。誰でもコードを手伝ってもらえますか

 add_action( 'customize_register', 'wpse8170_customize_register' );
   function wpse8170_customize_register( WP_Customize_Manager $wp_customize ) {
         $wp_customize->remove_section('id-of-section');

     }
4

1 に答える 1

3

このコードを見つけるまで、これにも問題がありました。functions.php に貼り付けるだけです

// Removing Genesis Sections from Customizer page
add_action( 'customize_register', 'gd_remove_customize_section', 20 );
function gd_remove_customize_section($wp_customize){
    $wp_customize->remove_section( 'genesis_layout');
    $wp_customize->remove_section( 'genesis_breadcrumbs');
    $wp_customize->remove_section( 'genesis_comments');
    $wp_customize->remove_section( 'genesis_archives');
}
于 2016-02-09T16:02:36.413 に答える