add_section( 'bansta_font_customization', [ 'title' => esc_html__('Typography', 'bansta'), 'priority' => 20 ] ); $wp_customize->add_setting( 'site_identity_font_size', [ 'default' => $bansta_defaults['site_identity_font_size'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'absint' ] ); $wp_customize->add_control( 'site_identity_font_size', [ 'type' => 'number', 'settings' => 'site_identity_font_size', 'label' => esc_html__('Site Identity Size', 'bansta'), 'section' => 'title_tagline', 'input_attrs' => [ 'min' => 10, 'max' => 40, ] ] ); $wp_customize->add_setting( 'line_height', [ 'default' => $bansta_defaults['line_height'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'bansta_sanitize_float' ] ); $wp_customize->add_control( 'line_height', [ 'type' => 'number', 'settings' => 'line_height', 'label' => esc_html__('Line Height', 'bansta'), 'section' => 'bansta_font_customization', 'input_attrs' => [ 'min' => 1, 'max' => 5, 'step' => 0.1 ] ] ); $wp_customize->add_setting( 'font_weight', [ 'default' => $bansta_defaults['font_weight'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'absint' ] ); $wp_customize->add_control( 'font_weight', [ 'type' => 'number', 'settings' => 'font_weight', 'label' => esc_html__('Body Font Weight', 'bansta'), 'section' => 'bansta_font_customization', 'input_attrs' => [ 'min' => 100, 'max' => 900, 'step' => 100 ] ] ); $wp_customize->add_setting( 'font_size', [ 'default' => $bansta_defaults['font_size'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'absint' ] ); $wp_customize->add_control( 'font_size', [ 'type' => 'number', 'settings' => 'font_size', 'label' => esc_html__('Body Font Size', 'bansta'), 'section' => 'bansta_font_customization', 'input_attrs' => [ 'min' => 1, 'max' => 40 ] ] ); $wp_customize->add_setting( 'site_identity_font_family', [ 'default' => $bansta_defaults['site_identity_font_family'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'bansta_sanitize_google_fonts' ] ); $wp_customize->add_control( 'site_identity_font_family', [ 'settings' => 'site_identity_font_family', 'label' => esc_html__('Site Title/Tagline Font', 'bansta'), 'section' => 'title_tagline', 'type' => 'select', 'choices' => bansta_websafe_font() ] ); $wp_customize->add_setting( 'secondary_font_family', [ 'default' => $bansta_defaults['secondary_font_family'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'bansta_sanitize_google_fonts' ] ); $wp_customize->add_control( 'secondary_font_family', [ 'settings' => 'secondary_font_family', 'label' => esc_html__('Secondary Font', 'bansta'), 'section' => 'bansta_font_customization', 'type' => 'select', 'choices' => bansta_websafe_font(), ] ); $wp_customize->add_setting( 'main_font_family', [ 'default' => $bansta_defaults['main_font_family'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'transport' => 'postMessage', 'sanitize_callback' => 'bansta_sanitize_google_fonts' ] ); $wp_customize->add_control( 'main_font_family', [ 'settings' => 'main_font_family', 'label' => esc_html__('Primary Font', 'bansta'), 'section' => 'bansta_font_customization', 'type' => 'select', 'choices' => bansta_websafe_font(), ] );