get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; $wp_customize->remove_section('title_tagline'); $wp_customize->remove_section('colors'); $wp_customize->remove_section('header_image'); //$wp_customize->remove_section('background_image'); //$wp_customize->remove_section('nav'); $wp_customize->remove_section('static_front_page'); //$wp_customize->remove_panel("widgets"); } add_action( 'customize_register', 'blognowlite_customize_register' ); /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function blognowlite_customize_preview_js() { wp_enqueue_script( 'blognowlite_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151215', true ); } add_action( 'customize_preview_init', 'blognowlite_customize_preview_js' ); function reset_mytheme_options() { remove_theme_mods(); } add_action( 'after_switch_theme', 'reset_mytheme_options' );