selective_refresh ) ? 'postMessage' : 'refresh'; /*========================================= Header Settings Panel =========================================*/ $wp_customize->add_panel( 'header_section', array( 'priority' => 2, 'capability' => 'edit_theme_options', 'title' => __('Header', 'automotive-mechanic'), ) ); /*========================================= Automotive Mechanic Site Identity =========================================*/ $wp_customize->add_section( 'title_tagline', array( 'priority' => 1, 'title' => __('Site Identity','automotive-mechanic'), 'panel' => 'header_section', ) ); // topheader Logo Width $wp_customize->add_setting('topheader_logowidth',array( 'default' => 100, 'sanitize_callback' => 'automotivemechanic_sanitize_float' )); $wp_customize->add_control(new automotivemechanic_Custom_Control( $wp_customize, 'topheader_logowidth',array( 'label' => __('Logo Width','automotive-mechanic'), 'section' => 'title_tagline', 'input_attrs' => array( 'min' => 0, 'max' => 500, 'step' => 1, ), ))); // logo section padding $wp_customize->add_setting('automotivemechanic_logo_padding',array( 'sanitize_callback' => 'esc_html' )); $wp_customize->add_control('automotivemechanic_logo_padding',array( 'label' => __('Logo Padding','automotive-mechanic'), 'section' => 'title_tagline' )); $wp_customize->add_setting('automotivemechanic_logo_top_padding',array( 'default' => '2', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('automotivemechanic_logo_top_padding',array( 'type' => 'number', 'label' => __('Top','automotive-mechanic'), 'section' => 'title_tagline', )); $wp_customize->add_setting('automotivemechanic_logo_left_padding',array( 'default' => '2', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('automotivemechanic_logo_left_padding',array( 'type' => 'number', 'label' => __('Left','automotive-mechanic'), 'section' => 'title_tagline', )); $wp_customize->add_setting('automotivemechanic_logo_bottom_padding',array( 'default' => '2', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('automotivemechanic_logo_bottom_padding',array( 'type' => 'number', 'label' => __('Bottom','automotive-mechanic'), 'section' => 'title_tagline', )); $wp_customize->add_setting('automotivemechanic_logo_right_padding',array( 'default' => '2', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('automotivemechanic_logo_right_padding',array( 'type' => 'number', 'label' => __('Right','automotive-mechanic'), 'section' => 'title_tagline', )); // top header Site Title Color $topheadersitetitlecol = esc_html__('#002434', 'automotive-mechanic' ); $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','automotive-mechanic'), 'section' => 'title_tagline', 'type' => 'color', 'transport' => $selective_refresh, ) ); // top header Tagline Color $topheadertaglinecol = esc_html__('#002434', 'automotive-mechanic' ); $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','automotive-mechanic'), 'section' => 'title_tagline', 'type' => 'color', 'transport' => $selective_refresh, ) ); /*========================================= Automotive Mechanic header =========================================*/ $wp_customize->add_section( 'top_header', array( 'priority' => 5, 'title' => __('Header','automotive-mechanic'), 'panel' => 'header_section', ) ); $wp_customize->add_setting('automotivemechanic_top_header_tabs', array( 'sanitize_callback' => 'wp_kses_post', )); $wp_customize->add_control(new automotivemechanic_Tab_Control($wp_customize, 'automotivemechanic_top_header_tabs', array( 'section' => 'top_header', 'priority' => 1, 'buttons' => array( array( 'name' => esc_html__('General', 'automotive-mechanic'), 'icon' => 'dashicons dashicons-welcome-write-blog', 'fields' => array( 'hide_show_sticky', 'tophead_mail', 'tophead_phone', 'tophead_address' ), 'active' => true, ), array( 'name' => esc_html__('Style', 'automotive-mechanic'), 'icon' => 'dashicons dashicons-art', 'fields' => array( 'header_topheadbgcolor', 'header_phonmailiconcolor', 'header_topheadphonmailtextcolor', 'header_topheadtexthrvcolor', 'header_bgcolor', 'header_menuscolor', 'header_menushovercolor', 'header_submenusbgcolor', 'header_submenusbordercolor', 'header_submenutextcolor', 'header_submenutexticoncolor', 'header_submenusbghovercolor', 'header_submenustxthovercolor', 'header_searchacciconcolor' ), ) ), ))); // general setting // sticky header $wp_customize->add_setting( 'hide_show_sticky',array( 'default' => false, 'sanitize_callback' => 'automotivemechanic_switch_sanitization' ) ); $wp_customize->add_control( new automotivemechanic_Toggle_Switch_Custom_Control( $wp_customize, 'hide_show_sticky',array( 'label' => __( 'Show Sticky Header','automotive-mechanic' ), 'section' => 'top_header' ))); // tophead mail $topheadmail = esc_html__('demo@example.com', 'automotive-mechanic' ); $wp_customize->add_setting( 'tophead_mail', array( 'default' => $topheadmail, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 7, ) ); $wp_customize->add_control( 'tophead_mail', array( 'label' => __('Top Head Mail','automotive-mechanic'), 'section' => 'top_header', 'type' => 'text', 'transport' => $selective_refresh, ) ); // tophead phone $topheadphone = esc_html__('+000 0000 000', 'automotive-mechanic' ); $wp_customize->add_setting( 'tophead_phone', array( 'default' => $topheadphone, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 7, ) ); $wp_customize->add_control( 'tophead_phone', array( 'label' => __('Top Head Phone','automotive-mechanic'), 'section' => 'top_header', 'type' => 'text', 'transport' => $selective_refresh, ) ); // tophead address $topheadaddress = esc_html__('3261 Anmoore Lorem Ipsum , NY 11230', 'automotive-mechanic' ); $wp_customize->add_setting( 'tophead_address', array( 'default' => $topheadaddress, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 7, ) ); $wp_customize->add_control( 'tophead_address', array( 'label' => __('Top Head Address','automotive-mechanic'), 'section' => 'top_header', 'type' => 'text', 'transport' => $selective_refresh, ) ); // Style setting // header topheadbg Color $headertopheadbgcolor = esc_html__('#222222', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_topheadbgcolor', array( 'default' => $headertopheadbgcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_topheadbgcolor', array( 'label' => __('Top Head BG Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header phonmailicon Color $headerphonmailiconcolor = esc_html__('#F7C02E', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_phonmailiconcolor', array( 'default' => $headerphonmailiconcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_phonmailiconcolor', array( 'label' => __('Top Head Icons Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header topheadphnmailtext Color $headertopheadphnmailtextcolor = esc_html__('#fff', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_topheadphonmailtextcolor', array( 'default' => $headertopheadphnmailtextcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_topheadphonmailtextcolor', array( 'label' => __('Top Head Text Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header topheadtexthrv Color $headertopheadtexthrvcolor = esc_html__('#F7C02E', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_topheadtexthrvcolor', array( 'default' => $headertopheadtexthrvcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_topheadtexthrvcolor', array( 'label' => __('Top Head Text Hover Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header bg Color $headerbgcolor = esc_html__('#fff', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_bgcolor', array( 'default' => $headerbgcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_bgcolor', array( 'label' => __('Bottom Header BG Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header menus Color $headermenuscolor = esc_html__('#002434', 'automotive-mechanic' ); $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','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header menushover Color $headermenushovercolor = esc_html__('#F7C02E', 'automotive-mechanic' ); $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','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); $headersubmenusbgcolor = esc_html__('#fff', 'automotive-mechanic' ); $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','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); $headersubmenusbordercolor = esc_html__('#F7C02E', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_submenusbordercolor', array( 'default' => $headersubmenusbordercolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_submenusbordercolor', array( 'label' => __('SubMenus Border Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header submenutext Color $headersubmenutextcolor = esc_html__('#F7C02E', 'automotive-mechanic' ); $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','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header submenutexticon Color $headersubmenutexticoncolor = esc_html__('#000', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_submenutexticoncolor', array( 'default' => $headersubmenutexticoncolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_submenutexticoncolor', array( 'label' => __('SubMenus Text Icon Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header submenusbghover Color $headersubmenusbghovercolor = esc_html__('#F7C02E', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_submenusbghovercolor', array( 'default' => $headersubmenusbghovercolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_submenusbghovercolor', array( 'label' => __('SubMenus BG Hover Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header submenustxthover Color $headersubmenustxthovercolor = esc_html__('#fff', 'automotive-mechanic' ); $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','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); // header searchaccicon Color $headersearchacciconcolor = esc_html__('#F7C02E', 'automotive-mechanic' ); $wp_customize->add_setting( 'header_searchacciconcolor', array( 'default' => $headersearchacciconcolor, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', 'priority' => 3, ) ); $wp_customize->add_control( 'header_searchacciconcolor', array( 'label' => __('Icons Color','automotive-mechanic'), 'section' => 'top_header', 'type' => 'color', 'transport' => $selective_refresh, ) ); $wp_customize->register_control_type('automotivemechanic_Tab_Control'); $wp_customize->register_panel_type( 'automotivemechanic_WP_Customize_Panel' ); $wp_customize->register_section_type( 'automotivemechanic_WP_Customize_Section' ); } add_action( 'customize_register', 'automotivemechanic_header_settings' ); if ( class_exists( 'WP_Customize_Panel' ) ) { class automotivemechanic_WP_Customize_Panel extends WP_Customize_Panel { public $panel; public $type = 'automotivemechanic_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 automotivemechanic_WP_Customize_Section extends WP_Customize_Section { public $section; public $type = 'automotivemechanic_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; } } }