add_section( 'site_typography' , array( 'title' => esc_html__( 'Typography', 'abcblog' ), 'priority' => 15, 'description' => '', ) ); $wp_customize->add_setting('theme_main_font', array( 'default' => 'Oxygen', 'sanitize_callback' => '__return_false_value', )); $wp_customize->add_control( 'theme_main_font', array( 'settings' => 'theme_main_font', 'label' => esc_html__( 'Choose site font family', 'abcblog' ), 'section' => 'site_typography', 'type' => 'select', 'priority' => 1, 'choices' => array( 'Arial' => 'Arial', 'Century Gothic' => 'Century Gothic', 'fabfeltscript' => 'Fabfelt Script', 'Georgia' => 'Georgia', 'Gill Sans / Gill Sans MT' => 'Gill Sans / Gill Sans MT', 'Josefin Sans' => 'Josefin Sans', 'Lato' => 'Lato', 'Lora' => 'Lora', 'Open Sans' => 'Open Sans', 'Oxygen' => 'Oxygen', 'Tahoma' => 'Tahoma', 'Trebuchet MS' => 'Trebuchet MS', 'Verdana' => 'Verdana', ), )); $wp_customize->add_setting('theme_main_font_size', array( 'default' => '16px', 'sanitize_callback' => '__return_false_value', )); $wp_customize->add_control( 'theme_main_font_size', array( 'settings' => 'theme_main_font_size', 'label' => esc_html__( 'Select body font size', 'abcblog' ), 'section' => 'site_typography', 'type' => 'select', 'priority' => 2, 'choices' => array( '10px' => '10px', '11px' => '11px', '12px' => '12px', '13px' => '13px', '14px' => '14px', '15px' => '15px', '16px' => '16px', '17px' => '17px', '18px' => '18px', '19px' => '19px', '20px' => '20px', ), )); } add_action( 'customize_register', 'abcblog_typography_settings_register' );