get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; } } add_action( 'customize_register', 'elitewhite_customize_register' ); if ( ! function_exists( 'elitewhite_theme_customize_register' ) ) { /** * Register individual settings through customizer's API. * * @param WP_Customize_Manager $wp_customize Customizer reference. */ function elitewhite_theme_customize_register( $wp_customize ) { // Theme layout settings. $wp_customize->add_section( 'elitewhite_theme_layout_options', array( 'title' => __( 'Theme Layout Settings', 'elitewhite' ), 'capability' => 'edit_theme_options', 'description' => __( 'Container width and sidebar defaults', 'elitewhite' ), 'priority' => 160, ) ); /** * Select sanitization function * * @param string $input Slug to sanitize. * @param WP_Customize_Setting $setting Setting instance. * @return string Sanitized slug if it is a valid choice; otherwise, the setting default. */ function elitewhite_theme_slug_sanitize_select( $input, $setting ) { // Ensure input is a slug (lowercase alphanumeric characters, dashes and underscores are allowed only). $input = sanitize_key( $input ); // Get the list of possible select options. $choices = $setting->manager->get_control( $setting->id )->choices; // If the input is a valid key, return it; otherwise, return the default. return ( array_key_exists( $input, $choices ) ? $input : $setting->default ); } $wp_customize->add_setting( 'elitewhite_container_type', array( 'default' => 'container', 'type' => 'theme_mod', 'sanitize_callback' => 'elitewhite_theme_slug_sanitize_select', 'capability' => 'edit_theme_options', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'elitewhite_container_type', array( 'label' => __( 'Container Width', 'elitewhite' ), 'description' => __( 'Choose between Bootstrap\'s container and container-fluid', 'elitewhite' ), 'section' => 'elitewhite_theme_layout_options', 'settings' => 'elitewhite_container_type', 'type' => 'select', 'choices' => array( 'container' => __( 'Fixed width container', 'elitewhite' ), 'container-fluid' => __( 'Full width container', 'elitewhite' ), ), 'priority' => '10', ) ) ); $wp_customize->add_setting( 'elitewhite_sidebar_position', array( 'default' => 'right', 'type' => 'theme_mod', 'sanitize_callback' => 'sanitize_text_field', 'capability' => 'edit_theme_options', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'elitewhite_sidebar_position', array( 'label' => __( 'Sidebar Positioning', 'elitewhite' ), 'description' => __( 'Set sidebar\'s default position. Can either be: right, left, both or none. Note: this can be overridden on individual pages.', 'elitewhite' ), 'section' => 'elitewhite_theme_layout_options', 'settings' => 'elitewhite_sidebar_position', 'type' => 'select', 'sanitize_callback' => 'elitewhite_theme_slug_sanitize_select', 'choices' => array( 'right' => __( 'Right sidebar', 'elitewhite' ), 'left' => __( 'Left sidebar', 'elitewhite' ), 'both' => __( 'Left & Right sidebars', 'elitewhite' ), 'none' => __( 'No sidebar', 'elitewhite' ), ), 'priority' => '20', ) ) ); } } // endif function_exists( 'elitewhite_theme_customize_register' ). add_action( 'customize_register', 'elitewhite_theme_customize_register' ); /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ if ( ! function_exists( 'elitewhite_customize_preview_js' ) ) { /** * Setup JS integration for live previewing. */ function elitewhite_customize_preview_js() { wp_enqueue_script( 'elitewhite_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20130508', true ); } } add_action( 'customize_preview_init', 'elitewhite_customize_preview_js' );