1

有人可以帮我删除 genesis.js 中的定制器部分吗?我想从 genesis 中的主题定制器中删除颜色部分。尝试了许多代码,但现在可以工作了。谁能帮我写代码

 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 回答