add_section( 'bloguide_section_typography', array( 'title' => esc_html__( 'Typography', 'bloguide' ), 'priority' => 600, 'panel' => 'bloguide_theme_options_panel', ) ); $wp_customize->add_setting( 'bloguide_theme_options[theme_site_title_typography]', array( 'sanitize_callback' => 'bloguide_sanitize_select', ) ); $wp_customize->add_control( 'bloguide_theme_options[theme_site_title_typography]', array( 'label' => esc_html__( 'Choose Site Title Typography', 'bloguide' ), 'section' => 'bloguide_section_typography', 'settings' => 'bloguide_theme_options[theme_site_title_typography]', 'type' => 'select', 'choices' => bloguide_typography_options(), ) ); $wp_customize->add_setting( 'bloguide_theme_options[theme_site_description_typography]', array( 'sanitize_callback' => 'bloguide_sanitize_select', ) ); $wp_customize->add_control( 'bloguide_theme_options[theme_site_description_typography]', array( 'label' => esc_html__( 'Choose Site Description Typography', 'bloguide' ), 'section' => 'bloguide_section_typography', 'settings' => 'bloguide_theme_options[theme_site_description_typography]', 'type' => 'select', 'choices' => bloguide_typography_options(), ) ); $wp_customize->add_setting( 'bloguide_theme_options[theme_menu_typography]', array( 'sanitize_callback' => 'bloguide_sanitize_select', ) ); $wp_customize->add_control( 'bloguide_theme_options[theme_menu_typography]', array( 'label' => esc_html__( 'Choose Menu Typography', 'bloguide' ), 'section' => 'bloguide_section_typography', 'settings' => 'bloguide_theme_options[theme_menu_typography]', 'type' => 'select', 'choices' => bloguide_typography_options(), ) ); $wp_customize->add_setting( 'bloguide_theme_options[theme_head_typography]', array( 'sanitize_callback' => 'bloguide_sanitize_select', ) ); $wp_customize->add_control( 'bloguide_theme_options[theme_head_typography]', array( 'label' => esc_html__( 'Choose Heading Typography', 'bloguide' ), 'section' => 'bloguide_section_typography', 'settings' => 'bloguide_theme_options[theme_head_typography]', 'type' => 'select', 'choices' => bloguide_typography_options(), ) ); $wp_customize->add_setting( 'bloguide_theme_options[theme_body_typography]', array( 'sanitize_callback' => 'bloguide_sanitize_select', ) ); $wp_customize->add_control( 'bloguide_theme_options[theme_body_typography]', array( 'label' => esc_html__( 'Choose Body Typography', 'bloguide' ), 'section' => 'bloguide_section_typography', 'settings' => 'bloguide_theme_options[theme_body_typography]', 'type' => 'select', 'choices' => bloguide_typography_options(), ) ); $wp_customize->add_setting( 'bloguide_theme_options[theme_btn_label_typography]', array( 'sanitize_callback' => 'bloguide_sanitize_select', ) ); $wp_customize->add_control( 'bloguide_theme_options[theme_btn_label_typography]', array( 'label' => esc_html__( 'Choose Button Label Typography', 'bloguide' ), 'section' => 'bloguide_section_typography', 'settings' => 'bloguide_theme_options[theme_btn_label_typography]', 'type' => 'select', 'choices' => bloguide_typography_options(), ) );