add_section( 'bright_blog_typography', array( 'panel' => 'bright_blog_theme_options', 'title' => esc_html__( 'Typography', 'bright-blog' ), ) ); // Typography - Site Title Font. $wp_customize->add_setting( 'bright_blog_site_title_font', array( 'default' => 'Sora', 'sanitize_callback' => 'bright_blog_sanitize_google_fonts', ) ); $wp_customize->add_control( 'bright_blog_site_title_font', array( 'label' => esc_html__( 'Site Title Font Family', 'bright-blog' ), 'section' => 'bright_blog_typography', 'settings' => 'bright_blog_site_title_font', 'type' => 'select', 'choices' => bright_blog_get_all_google_font_families(), ) ); // Typography - Site Description Font. $wp_customize->add_setting( 'bright_blog_site_description_font', array( 'default' => 'Comfortaa', 'sanitize_callback' => 'bright_blog_sanitize_google_fonts', ) ); $wp_customize->add_control( 'bright_blog_site_description_font', array( 'label' => esc_html__( 'Site Description Font Family', 'bright-blog' ), 'section' => 'bright_blog_typography', 'settings' => 'bright_blog_site_description_font', 'type' => 'select', 'choices' => bright_blog_get_all_google_font_families(), ) ); // Typography - Header Font. $wp_customize->add_setting( 'bright_blog_header_font', array( 'default' => 'IBM Plex Sans', 'sanitize_callback' => 'bright_blog_sanitize_google_fonts', ) ); $wp_customize->add_control( 'bright_blog_header_font', array( 'label' => esc_html__( 'Header Font Family', 'bright-blog' ), 'section' => 'bright_blog_typography', 'settings' => 'bright_blog_header_font', 'type' => 'select', 'choices' => bright_blog_get_all_google_font_families(), ) ); // Typography - Body Font. $wp_customize->add_setting( 'bright_blog_body_font', array( 'default' => 'Inter', 'sanitize_callback' => 'bright_blog_sanitize_google_fonts', ) ); $wp_customize->add_control( 'bright_blog_body_font', array( 'label' => esc_html__( 'Body Font Family', 'bright-blog' ), 'section' => 'bright_blog_typography', 'settings' => 'bright_blog_body_font', 'type' => 'select', 'choices' => bright_blog_get_all_google_font_families(), ) );