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' => 'bike_workshop_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'bike_workshop_customize_partial_blogdescription', ) ); } // Upsell Section. $wp_customize->add_section( new Bike_Workshop_Upsell_Section( $wp_customize, 'upsell_section', array( 'title' => __( 'Bike Workshop Pro', 'bike-workshop' ), 'button_text' => __( 'Buy Pro', 'bike-workshop' ), 'url' => 'https://asterthemes.com/products/bike-workshop-wordpress-theme', 'background_color' => '#EDB522', 'text_color' => '#fff', 'priority' => 0, ) ) ); // Doc Section. $wp_customize->add_section( new Bike_Workshop_Upsell_Section( $wp_customize, 'doc_section', array( 'title' => __( 'Documentation', 'bike-workshop' ), 'button_text' => __( 'Free Doc', 'bike-workshop' ), 'url' => 'https://demo.asterthemes.com/docs/bike-workshop-free/', 'background_color' => '#EDB522', 'text_color' => '#fff', 'priority' => 1, ) ) ); // Theme Options. require get_template_directory() . '/theme-library/customizer/theme-options.php'; // Front Page Options. require get_template_directory() . '/theme-library/customizer/front-page-options.php'; // Colors. require get_template_directory() . '/theme-library/customizer/colors.php'; } add_action( 'customize_register', 'bike_workshop_customize_register' ); function bike_workshop_customize_partial_blogname() { bloginfo( 'name' ); } function bike_workshop_customize_partial_blogdescription() { bloginfo( 'description' ); } function bike_workshop_custom_control_scripts() { wp_enqueue_style( 'bike-workshop-custom-controls-css', get_template_directory_uri() . '/resource/css/custom-controls.css', array(), '1.0', 'all' ); wp_enqueue_script( 'bike-workshop-custom-controls-js', get_template_directory_uri() . '/resource/js/custom-controls.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-sortable' ), '1.0', true ); } add_action( 'customize_controls_enqueue_scripts', 'bike_workshop_custom_control_scripts' );