add_section( 'beauty-studio-headings-typography', array( 'priority' => 10, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'Headings Font Options', 'beauty-studio' ), 'panel' => 'beauty-studio-typography-panel' ) ); /* font family*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-headings-font-family]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-headings-font-family'], 'sanitize_callback' => 'esc_attr' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-headings-font-family]', array( 'label' => esc_html__( 'Font Name/Style/Sets', 'beauty-studio' ), 'description' => sprintf( esc_html__( 'Google Fonts can be found here: %1$sgoogle.com/fonts%2$s.', 'beauty-studio' ), '','' ), 'section' => 'beauty-studio-headings-typography', 'settings' => 'beauty_studio_theme_options[beauty-studio-headings-font-family]', 'type' => 'text' ) ); /* font name*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-headings-font-name]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-headings-font-name'], 'sanitize_callback' => 'esc_attr' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-headings-font-name]', array( 'label' => esc_html__( 'Font Family', 'beauty-studio' ), 'section' => 'beauty-studio-headings-typography', 'settings' => 'beauty_studio_theme_options[beauty-studio-headings-font-name]', 'type' => 'text' ) ); /* H1 font size*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-h1-font-size]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-h1-font-size'], 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-h1-font-size]', array( 'label' => esc_html__( 'H1 Font Size', 'beauty-studio' ), 'section' => 'beauty-studio-headings-typography', 'settings' => 'beauty_studio_theme_options[beauty-studio-h1-font-size]', 'type' => 'number' ) ); /* H2 font size*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-h2-font-size]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-h2-font-size'], 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-h2-font-size]', array( 'label' => esc_html__( 'H2 Font Size', 'beauty-studio' ), 'section' => 'beauty-studio-headings-typography', 'settings' => 'beauty_studio_theme_options[beauty-studio-h2-font-size]', 'type' => 'number' ) ); /* H3 font size*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-h3-font-size]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-h3-font-size'], 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-h3-font-size]', array( 'label' => esc_html__( 'H3 Font Size', 'beauty-studio' ), 'section' => 'beauty-studio-headings-typography', 'settings' => 'beauty_studio_theme_options[beauty-studio-h3-font-size]', 'type' => 'number' ) ); /* H4 font size*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-h4-font-size]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-h4-font-size'], 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-h4-font-size]', array( 'label' => esc_html__( 'H4 Font Size', 'beauty-studio' ), 'section' => 'beauty-studio-headings-typography', 'settings' => 'beauty_studio_theme_options[beauty-studio-h4-font-size]', 'type' => 'number' ) ); /* H5 font size*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-h5-font-size]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-h5-font-size'], 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-h5-font-size]', array( 'label' => esc_html__( 'H5 Font Size', 'beauty-studio' ), 'section' => 'beauty-studio-headings-typography', 'settings' => 'beauty_studio_theme_options[beauty-studio-h5-font-size]', 'type' => 'number' ) ); /* H6 font size*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-h6-font-size]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-h6-font-size'], 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-h6-font-size]', array( 'label' => esc_html__( 'H6 Font Size', 'beauty-studio' ), 'section' => 'beauty-studio-headings-typography', 'settings' => 'beauty_studio_theme_options[beauty-studio-h6-font-size]', 'type' => 'number' ) );