selective_refresh ) ? 'postMessage' : 'refresh'; /*========================================= Header Settings Panel =========================================*/ $wp_customize->add_panel( 'header_section', array( 'priority' => 2, 'capability' => 'edit_theme_options', 'title' => __('Header', 'blinds-curtains'), ) ); /*========================================= Blinds Curtains Site Identity =========================================*/ $wp_customize->add_section( 'title_tagline', array( 'priority' => 1, 'title' => __('Site Identity','blinds-curtains'), 'panel' => 'header_section', ) ); // top header Site Title Color $topheadersitetitlecol = esc_html__('#000', 'blinds-curtains' ); $wp_customize->add_setting( 'topheader_sitetitlecol', array( 'default' => $topheadersitetitlecol, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'topheader_sitetitlecol', array( 'label' => __('Site Title Color','blinds-curtains'), 'section' => 'title_tagline', 'type' => 'color', 'transport' => $selective_refresh, ) ); // top header Tagline Color $topheadertaglinecol = esc_html__('#000', 'blinds-curtains' ); $wp_customize->add_setting( 'topheader_taglinecol', array( 'default' => $topheadertaglinecol, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 4, ) ); $wp_customize->add_control( 'topheader_taglinecol', array( 'label' => __('Tagline Color','blinds-curtains'), 'section' => 'title_tagline', 'type' => 'color', 'transport' => $selective_refresh, ) ); /*========================================= Blinds Curtains header =========================================*/ $wp_customize->add_section( 'top_header', array( 'priority' => 5, 'title' => __('Header','blinds-curtains'), 'panel' => 'header_section', ) ); $wp_customize->add_setting('blindscurtains_reset_header_settings',array( 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control(new blindscurtains_Reset_Custom_Control($wp_customize, 'blinds_curtains_reset_header_settings',array( 'type' => 'reset_control', 'priority' => 1, 'label' => __('Reset Header Settings', 'blinds-curtains'), 'description' => 'blinds_curtains_header_reset_settings', 'section' => 'top_header' ))); $wp_customize->add_setting('blindscurtains_top_header_tabs', array( 'sanitize_callback' => 'wp_kses_post', )); $wp_customize->add_control(new blindscurtains_Tab_Control($wp_customize, 'blindscurtains_top_header_tabs', array( 'section' => 'top_header', 'priority' => 1, 'buttons' => array( array( 'name' => esc_html__('General', 'blinds-curtains'), 'icon' => 'dashicons dashicons-welcome-write-blog', 'fields' => array( 'hide_show_sticky' ), 'active' => true, ), array( 'name' => esc_html__('Style', 'blinds-curtains'), 'icon' => 'dashicons dashicons-art', 'fields' => array( 'header_menuscolor', 'header_menushovercolor', 'header_submenusbgcolor', 'header_submenutextcolor', 'header_submenustxthovercolor', 'header_menubgcolor', 'header_headerbgcolor', 'header_cartcolor', 'header_cartnocolor' ), ) ), ))); // general setting // sticky header $wp_customize->add_setting( 'hide_show_sticky',array( 'default' => false, 'sanitize_callback' => 'blindscurtains_switch_sanitization' ) ); $wp_customize->add_control( new blindscurtains_Toggle_Switch_Custom_Control( $wp_customize, 'hide_show_sticky',array( 'label' => __( 'Show Sticky Header','blinds-curtains' ), 'section' => 'top_header' ))); // Style setting // header menus Color $headermenuscolor = esc_html__('#fff', 'blinds-curtains' ); $wp_customize->add_setting( 'header_menuscolor', array( 'default' => $headermenuscolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_menuscolor', array( 'label' => __('Menus Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header menushover Color $headermenushovercolor = esc_html__('#dee27b', 'blinds-curtains' ); $wp_customize->add_setting( 'header_menushovercolor', array( 'default' => $headermenushovercolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_menushovercolor', array( 'label' => __('Menus Hover & Active Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); $headersubmenusbgcolor = esc_html__('#000', 'blinds-curtains' ); $wp_customize->add_setting( 'header_submenusbgcolor', array( 'default' => $headersubmenusbgcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_submenusbgcolor', array( 'label' => __('SubMenus BG Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header submenutext Color $headersubmenutextcolor = esc_html__('#fff', 'blinds-curtains' ); $wp_customize->add_setting( 'header_submenutextcolor', array( 'default' => $headersubmenutextcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_submenutextcolor', array( 'label' => __('SubMenus Text Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header submenustxthover Color $headersubmenustxthovercolor = esc_html__('#dee27b', 'blinds-curtains' ); $wp_customize->add_setting( 'header_submenustxthovercolor', array( 'default' => $headersubmenustxthovercolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_submenustxthovercolor', array( 'label' => __('SubMenus Text Hover Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header menubg Color $headermenubgcolor = esc_html__('#000', 'blinds-curtains' ); $wp_customize->add_setting( 'header_menubgcolor', array( 'default' => $headermenubgcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_menubgcolor', array( 'label' => __('Menu BG Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header headerbg Color $headerheaderbgcolor = esc_html__('#eee9e8', 'blinds-curtains' ); $wp_customize->add_setting( 'header_headerbgcolor', array( 'default' => $headerheaderbgcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_headerbgcolor', array( 'label' => __('BG Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header cart Color $headercartcolor = esc_html__('#000', 'blinds-curtains' ); $wp_customize->add_setting( 'header_cartcolor', array( 'default' => $headercartcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_cartcolor', array( 'label' => __('Cart Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header cartno Color $headercartnocolor = esc_html__('#fff', 'blinds-curtains' ); $wp_customize->add_setting( 'header_cartnocolor', array( 'default' => $headercartnocolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_cartnocolor', array( 'label' => __('Cart Number Color','blinds-curtains'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); $wp_customize->register_control_type('blindscurtains_Tab_Control'); $wp_customize->register_panel_type( 'blindscurtains_WP_Customize_Panel' ); $wp_customize->register_section_type( 'blindscurtains_WP_Customize_Section' ); } add_action( 'customize_register', 'blindscurtains_header_settings' ); if ( class_exists( 'WP_Customize_Panel' ) ) { class blindscurtains_WP_Customize_Panel extends WP_Customize_Panel { public $panel; public $type = 'blindscurtains_panel'; public function json() { $array = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'type', 'panel', ) ); $array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) ); $array['content'] = $this->get_content(); $array['active'] = $this->active(); $array['instanceNumber'] = $this->instance_number; return $array; } } } if ( class_exists( 'WP_Customize_Section' ) ) { class blindscurtains_WP_Customize_Section extends WP_Customize_Section { public $section; public $type = 'blindscurtains_section'; public function json() { $array = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'panel', 'type', 'description_hidden', 'section', ) ); $array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) ); $array['content'] = $this->get_content(); $array['active'] = $this->active(); $array['instanceNumber'] = $this->instance_number; if ( $this->panel ) { $array['customizeAction'] = sprintf( 'Customizing ▸ %s', esc_html( $this->manager->get_panel( $this->panel )->title ) ); } else { $array['customizeAction'] = 'Customizing'; } return $array; } } }