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' => 'aster_photography_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'aster_photography_customize_partial_blogdescription', ) ); } // Upsell Section. $wp_customize->add_section( new Aster_Photography_Upsell_Section( $wp_customize, 'upsell_section', array( 'title' => __( 'Aster Photography Pro', 'aster-photography' ), 'button_text' => __( 'Buy Pro', 'aster-photography' ), 'url' => 'https://asterthemes.com/products/photographer-wordpress-theme', 'background_color' => '#000000', 'text_color' => '#fff', 'priority' => 0, ) ) ); // 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', 'aster_photography_customize_register' ); function aster_photography_customize_partial_blogname() { bloginfo( 'name' ); } function aster_photography_customize_partial_blogdescription() { bloginfo( 'description' ); } function aster_photography_customize_preview_js() { $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; wp_enqueue_script( 'aster-photography-customizer', get_template_directory_uri() . '/resource/js/customizer' . $min . '.js', array( 'customize-preview' ), ASTER_PHOTOGRAPHY_VERSION, true ); } add_action( 'customize_preview_init', 'aster_photography_customize_preview_js' ); function aster_photography_custom_control_scripts() { $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; wp_enqueue_style( 'aster-photography-custom-controls-css', get_template_directory_uri() . '/resource/css/custom-controls' . $min . '.css', array(), '1.0', 'all' ); wp_enqueue_script( 'aster-photography-custom-controls-js', get_template_directory_uri() . '/resource/js/custom-controls' . $min . '.js', array( 'jquery', 'jquery-ui-core', 'jquery-ui-sortable' ), '1.0', true ); } add_action( 'customize_controls_enqueue_scripts', 'aster_photography_custom_control_scripts' );