get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_video' )->transport = 'refresh'; $wp_customize->get_setting( 'external_header_video' )->transport = 'refresh'; $wp_customize->get_setting( 'header_image' )->transport = 'refresh'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'container_inclusive' => false, 'render_callback' => 'abletone_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'container_inclusive' => false, 'render_callback' => 'abletone_customize_partial_blogdescription', ) ); } // Important Links. $wp_customize->add_section( 'abletone_important_links', array( 'priority' => 999, 'title' => esc_html__( 'Important Links', 'abletone' ), ) ); // Has dummy Sanitizaition function as it contains no value to be sanitized. abletone_register_option( $wp_customize, array( 'name' => 'abletone_important_links', 'sanitize_callback' => 'sanitize_text_field', 'custom_control' => 'Abletone_Important_Links_Control', 'label' => esc_html__( 'Important Links', 'abletone' ), 'section' => 'abletone_important_links', 'type' => 'abletone_important_links', ) ); // Important Links End. } add_action( 'customize_register', 'abletone_customize_register', 11 ); /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function abletone_customize_preview_js() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; $path = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'assets/js/source/' : 'assets/js/'; wp_enqueue_script( 'abletone-customize-preview', trailingslashit( esc_url ( get_template_directory_uri() ) ) . $path . 'customize-preview' . $min . '.js', array( 'customize-preview' ), '20180103', true ); } add_action( 'customize_preview_init', 'abletone_customize_preview_js' ); /** * Include Custom Controls */ require get_parent_theme_file_path( 'inc/customizer/custom-controls.php' ); /** * Include Header Media Options */ require get_parent_theme_file_path( 'inc/customizer/header-media.php' ); /** * Include Theme Options */ require get_parent_theme_file_path( 'inc/customizer/theme-options.php' ); /** * Include Hero Content */ require get_parent_theme_file_path( 'inc/customizer/hero-content.php' ); /** * Include Featured Slider */ require get_parent_theme_file_path( 'inc/customizer/featured-slider.php' ); /** * Include Featured Content */ require get_parent_theme_file_path( 'inc/customizer/featured-content.php' ); /** * Include Testimonial */ require get_parent_theme_file_path( 'inc/customizer/testimonial.php' ); /** * Include Portfolio */ require get_parent_theme_file_path( 'inc/customizer/portfolio.php' ); /** * Include Customizer Helper Functions */ require get_parent_theme_file_path( 'inc/customizer/helpers.php' ); /** * Include Sanitization functions */ require get_parent_theme_file_path( 'inc/customizer/sanitize-functions.php' ); /** * Include Sticky Playlist */ require get_parent_theme_file_path( 'inc/customizer/sticky-playlist.php' ); /** * Include Service */ require get_parent_theme_file_path( 'inc/customizer/service.php' ); /** * Include Reset Button */ require get_parent_theme_file_path( 'inc/customizer/reset.php' ); /** * Upgrade to Pro Button */ require get_parent_theme_file_path( 'inc/customizer/upgrade-button/class-customize.php' );