add_section('bLab_h1_typography', array( 'title' => __('Heading-1 Typography (h1)', 'beauty-lab'), 'panel' => 'beauty_lab_typography', 'priority' => 1, )); //---h1 color---- $wp_customize->add_setting('bLab_h1_color', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control('bLab_h1_color_control', array( 'label' => __('Color', 'beauty-lab'), 'section' => 'bLab_h1_typography', 'settings' => 'bLab_h1_color', 'type' => 'color', ) ); //---h1 font size on desktop view---- $wp_customize->add_setting('bLab_h1_font_size_max', array( 'default' => 62, 'transport' => 'refresh', 'sanitize_callback' => 'themecon_intval', )); $wp_customize->add_control('bLab_h1_font_size_max_control', array( 'label' => __('Font Size for Desktop view (px)', 'beauty-lab'), 'section' => 'bLab_h1_typography', 'settings' => 'bLab_h1_font_size_max', 'type' => 'number', ) ); //---h1 font size on mobile view---- $wp_customize->add_setting('bLab_h1_font_size_min', array( 'default' => 40, 'transport' => 'refresh', 'sanitize_callback' => 'themecon_intval', )); $wp_customize->add_control('bLab_h1_font_size_min_control', array( 'label' => __('Font Size for Mobile view (px)', 'beauty-lab'), 'section' => 'bLab_h1_typography', 'settings' => 'bLab_h1_font_size_min', 'type' => 'number', ) ); //---h1 line height---- $wp_customize->add_setting('bLab_h1_line_height', array( 'default' => '1.1', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_float', )); $wp_customize->add_control('bLab_h1_line_height_control', array( 'label' => __('Line Height (em)', 'beauty-lab'), 'section' => 'bLab_h1_typography', 'settings' => 'bLab_h1_line_height', 'type' => 'number', ) ); //---h1 font weight---- $wp_customize->add_setting('bLab_h1_font_weight', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_select', )); $wp_customize->add_control('bLab_h1_font_weight_control', array( 'label' => __('Font Weight', 'beauty-lab'), 'section' => 'bLab_h1_typography', 'settings' => 'bLab_h1_font_weight', 'type' => 'select', 'choices' => themecon_customizer_font_weight(),//it from customizer-select-options.php ) ); //---h1 text transform---- $wp_customize->add_setting('bLab_h1_text_transform', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_select', )); $wp_customize->add_control('bLab_h1_text_transform_control', array( 'label' => __('Text Transform', 'beauty-lab'), 'section' => 'bLab_h1_typography', 'settings' => 'bLab_h1_text_transform', 'type' => 'select', 'choices' => themecon_customizer_text_transform(),//it from customizer-select-options.php ) ); //---h1 font family---- $wp_customize->add_setting('bLab_h1_font_family', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_select', )); $wp_customize->add_control('bLab_h1_font_family_control', array( 'label' => __('Font Family', 'beauty-lab'), 'section' => 'bLab_h1_typography', 'settings' => 'bLab_h1_font_family', 'type' => 'select', 'choices' => themecon_customizer_google_fonts(),//it from customizer-select-options.php ) ); } add_action( 'customize_register', 'beauty_lab_customize_typography_h1' ); ?>