get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; /*------------------------------------------------------------------------------------*/ /** * Upgrade to Bloger Pro */ // Register custom section types. $wp_customize->register_section_type( 'Bloger_Customize_Section_Pro' ); // Register sections. $wp_customize->add_section( new Bloger_Customize_Section_Pro( $wp_customize, 'bloger-pro', array( 'title' => esc_html__( 'Free Vs Pro', 'bloger' ), 'pro_text' => esc_html__( 'Compare','bloger' ), 'pro_url' => admin_url( 'themes.php?page=bloger-welcome§ion=free_vs_pro'), 'priority' => 1, ) ) ); $wp_customize->add_setting( 'bloger_pro_upbuton', array( 'section' => 'bloger-pro', 'sanitize_callback' => 'esc_attr', ) ); $wp_customize->add_control( 'bloger_pro_upbuton', array( 'section' => 'bloger-pro' ) ); } add_action( 'customize_register', 'bloger_customize_register' ); /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function bloger_customize_preview_js() { wp_enqueue_script( 'bloger_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20130508', true ); } add_action( 'customize_preview_init', 'bloger_customize_preview_js' ); /** gaga_customizer scripts and styles **/ function bloger_customizer_scripts() { wp_enqueue_style( 'bloger-customizer-style' , get_template_directory_uri().'/css/customizer-custom.css'); } add_action( 'customize_controls_enqueue_scripts', 'bloger_customizer_scripts'); /** Extra Controls **/ if( class_exists( 'WP_Customize_Control' ) || class_exists( 'WP_Customize_Section' ) ) : /** * Pro customizer section. * * @since 1.0.0 * @access public */ class Bloger_Customize_Section_Pro extends WP_Customize_Section { /** * The type of customize section being rendered. * * @since 1.0.0 * @access public * @var string */ public $type = 'bloger-pro'; /** * Custom button text to output. * * @since 1.0.0 * @access public * @var string */ public $pro_text = ''; /** * Custom pro button URL. * * @since 1.0.0 * @access public * @var string */ public $pro_url = ''; /** * Add custom parameters to pass to the JS via JSON. * * @since 1.0.0 * @access public * @return void */ public function json() { $json = parent::json(); $json['pro_text'] = $this->pro_text; $json['pro_url'] = esc_url( $this->pro_url ); return $json; } /** * Outputs the Underscore.js template. * * @since 1.0.0 * @access public * @return void */ protected function render_template() { ?>