add_section( 'fonts_options_section' , array( 'title' => __( 'Fonts', 'aniro-hotel-light' ), 'priority' => 110, 'description' => __( 'Choose google font.', 'aniro-hotel-light' ) ) ); //Header Fonts $wp_customize->add_setting( 'anirohotellight_google_font_setting_header', array( 'default' => 'Muli', 'sanitize_callback' => 'anirohotellight_sanitize_font_header', ) ); $wp_customize->add_control( new anirohotellight_Google_Font_Dropdown_Custom_Control_Header( $wp_customize, 'anirohotellight_google_font_setting_header', array( 'label' => __( 'Select your desired font for the headings (Default font is Muli):', 'aniro-hotel-light' ), 'section' => 'fonts_options_section', 'settings' => 'anirohotellight_google_font_setting_header', 'type' => 'select', 'priority' => 10 ) ) ); //Body Fonts $wp_customize->add_setting( 'anirohotellight_google_font_setting_body', array( 'default' => 'Roboto', 'sanitize_callback' => 'anirohotellight_sanitize_font_body', ) ); $wp_customize->add_control( new anirohotellight_Google_Font_Dropdown_Custom_Control_Body( $wp_customize, 'anirohotellight_google_font_setting_body', array( 'label' => __( 'Select your desired font for the body (Default font is Roboto):', 'aniro-hotel-light' ), 'section' => 'fonts_options_section', 'settings' => 'anirohotellight_google_font_setting_body', 'type' => 'select', 'priority' => 12 ) ) );