get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'arther_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'arther_customize_partial_blogdescription', ) ); } /* About Theme Section */ $wp_customize->add_section( 'arther_about_theme_section', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __( 'About Arther', 'arther' ), 'panel' => 'arther_panel', ) ); $wp_customize->add_setting( 'upgrade_text', array( 'default' => '', 'sanitize_callback' => '__return_false' ) ); $wp_customize->add_control( new Arther_Customize_Static_Text_Control( $wp_customize, 'upgrade_text', array( 'section' => 'arther_about_theme_section', 'description' => array('') ) ) ); /** * Load customizer custom-controls */ require get_template_directory() . '/candidthemes/customizer-pro/customize-controls.php'; /** * Load Customizer Settings * * All the settings for appearance > customize */ require get_template_directory() . '/candidthemes/customizer/customizer-main-panel.php'; } add_action( 'customize_register', 'arther_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function arther_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function arther_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function arther_customize_preview_js() { wp_enqueue_script( 'arther-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), _S_VERSION, true ); } add_action( 'customize_preview_init', 'arther_customize_preview_js' ); /** * Customizer Styles */ function arther_customizer_css() { wp_enqueue_style('arther-customizer-css', get_template_directory_uri() . '/candidthemes/assets/custom/css/customizer-style.css', array(), '1.0.0'); } add_action( 'customize_controls_enqueue_scripts', 'arther_customizer_css' );