如何删除创世纪中的wp自定义部分

时间:2015-06-16 11:24:18

标签: wordpress genesis

可以帮助我删除创世纪中的自定义程序部分。我想从genesis中删除主题定制器中的颜色部分。但很多代码现在正在工作。任何人都可以帮我解决代码

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

     }

1 个答案:

答案 0 :(得分:2)

我也遇到了麻烦,直到找到这段代码。把它粘在你的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');
}