add_section('bLab_h4_typography', array( 'title' => __('Heading-4 Typography (h4)', 'beauty-lab'), 'panel' => 'beauty_lab_typography', 'priority' => 4, )); //---h4 color---- $wp_customize->add_setting('bLab_h4_color', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control('bLab_h4_color_control', array( 'label' => __('Color', 'beauty-lab'), 'section' => 'bLab_h4_typography', 'settings' => 'bLab_h4_color', 'type' => 'color', ) ); //---h4 font size on desktop view---- $wp_customize->add_setting('bLab_h4_font_size_max', array( 'default' => 30, 'transport' => 'refresh', 'sanitize_callback' => 'themecon_intval', )); $wp_customize->add_control('bLab_h4_font_size_max_control', array( 'label' => __('Font Size for Desktop view (px)', 'beauty-lab'), 'section' => 'bLab_h4_typography', 'settings' => 'bLab_h4_font_size_max', 'type' => 'number', ) ); //---h4 font size on mobile view---- $wp_customize->add_setting('bLab_h4_font_size_min', array( 'default' => 25, 'transport' => 'refresh', 'sanitize_callback' => 'themecon_intval', )); $wp_customize->add_control('bLab_h4_font_size_min_control', array( 'label' => __('Font Size for Mobile view (px)', 'beauty-lab'), 'section' => 'bLab_h4_typography', 'settings' => 'bLab_h4_font_size_min', 'type' => 'number', ) ); //---h4 line height---- $wp_customize->add_setting('bLab_h4_line_height', array( 'default' => '1.3', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_float', )); $wp_customize->add_control('bLab_h4_line_height_control', array( 'label' => __('Line Height (em)', 'beauty-lab'), 'section' => 'bLab_h4_typography', 'settings' => 'bLab_h4_line_height', 'type' => 'number', ) ); //---h4 font weight---- $wp_customize->add_setting('bLab_h4_font_weight', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_select', )); $wp_customize->add_control('bLab_h4_font_weight_control', array( 'label' => __('Font Weight', 'beauty-lab'), 'section' => 'bLab_h4_typography', 'settings' => 'bLab_h4_font_weight', 'type' => 'select', 'choices' => themecon_customizer_font_weight(),//it from customizer-select-options.php ) ); //---h4 text transform---- $wp_customize->add_setting('bLab_h4_text_transform', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_select', )); $wp_customize->add_control('bLab_h4_text_transform_control', array( 'label' => __('Text Transform', 'beauty-lab'), 'section' => 'bLab_h4_typography', 'settings' => 'bLab_h4_text_transform', 'type' => 'select', 'choices' => themecon_customizer_text_transform(),//it from customizer-select-options.php ) ); //---h4 font family---- $wp_customize->add_setting('bLab_h4_font_family', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_select', )); $wp_customize->add_control('bLab_h4_font_family_control', array( 'label' => __('Font Family', 'beauty-lab'), 'section' => 'bLab_h4_typography', 'settings' => 'bLab_h4_font_family', 'type' => 'select', 'choices' => themecon_customizer_google_fonts(),//it from customizer-select-options.php ) ); } add_action( 'customize_register', 'beauty_lab_customize_typography_h4' ); ?>