selective_refresh ) ? 'postMessage' : 'refresh'; /*========================================= Header Settings Panel =========================================*/ $wp_customize->add_panel( 'header_section', array( 'priority' => 2, 'capability' => 'edit_theme_options', 'title' => __('Header', 'auramart'), ) ); /*========================================= AuraMart Site Identity =========================================*/ $wp_customize->add_section( 'title_tagline', array( 'priority' => 1, 'title' => __('Site Identity','auramart'), 'panel' => 'header_section', ) ); /*========================================= Header Navigation =========================================*/ $wp_customize->add_section( 'header_navigation', array( 'priority' => 4, 'title' => __('Header Navigation','auramart'), 'panel' => 'header_section', ) ); // Cart $wp_customize->add_setting( 'hdr_nav_cart' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_text', 'priority' => 7, ) ); $wp_customize->add_control( 'hdr_nav_cart', array( 'type' => 'hidden', 'label' => __('Cart','auramart'), 'section' => 'header_navigation', ) ); $wp_customize->add_setting( 'hide_show_cart' , array( 'default' => '1', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_checkbox', 'priority' => 8, ) ); $wp_customize->add_control( 'hide_show_cart', array( 'label' => esc_html__( 'Hide/Show', 'auramart' ), 'section' => 'header_navigation', 'type' => 'checkbox' ) ); /*========================================= Sticky Header =========================================*/ $wp_customize->add_section( 'sticky_header_setting', array( 'priority' => 4, 'title' => __('Sticky Header','auramart'), 'panel' => 'header_section', ) ); // Heading $wp_customize->add_setting( 'sticky_head' ,array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_text', 'priority' => 1, ) ); $wp_customize->add_control( 'sticky_head', array( 'type' => 'hidden', 'label' => __('Sticky Header','auramart'), 'section' => 'sticky_header_setting', ) ); $wp_customize->add_setting( 'hide_show_sticky' , array( 'default' => '1', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'auramart_sanitize_checkbox', 'priority' => 2, ) ); $wp_customize->add_control( 'hide_show_sticky', array( 'label' => esc_html__( 'Hide/Show', 'auramart' ), 'section' => 'sticky_header_setting', 'type' => 'checkbox' ) ); } add_action( 'customize_register', 'auramart_header_settings' );