get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; // Rename the label to "Site Title Color" because this only affects the site title in this theme. $wp_customize->get_control( 'header_textcolor' )->label = __( 'Site Title Color', 'tinyforge' ); // Rename the label to "Display Site Title & Tagline" in order to make this option extra clear. $wp_customize->get_control( 'display_header_text' )->label = __( 'Display Site Title & Tagline', 'tinyforge' ); /** * Add custom header logo by Kirk Wight. * * @link http://kwight.ca/2012/12/02/adding-a-logo-uploader-to-your-wordpress-site-with-the-theme-customizer/ * * Create a new section for our logo upload. */ $wp_customize->add_section( 'tinyforge_logo_section' , array( 'title' => __( 'Logo', 'tinyforge' ), 'priority' => 30, 'description' => __( 'Upload a logo to display it next to the default site name and description in the header', 'tinyforge' ), ) ); // Register our new setting. $wp_customize->add_setting( 'tinyforge_logo', array ( 'default' => '', 'sanitize_callback' => 'esc_url_raw' )); // Tell the Theme Customizer to let us use an image uploader for setting our logo. $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'tinyforge_logo', array( 'label' => __( 'Logo', 'tinyforge' ), 'section' => 'tinyforge_logo_section', 'settings' => 'tinyforge_logo', ) ) ); } add_action( 'customize_register', 'tinyforge_customize_register' ); /** * Enqueue Javascript postMessage handlers for the Customizer. * * Binds JS handlers to make the Customizer preview reload changes asynchronously. * * @since Tiny Forge 1.0 */ function tinyforge_customize_preview_js() { wp_enqueue_script( 'tinyforge_customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20141120', true ); } add_action( 'customize_preview_init', 'tinyforge_customize_preview_js' );