add_setting( 'sample_google_font_select', array( // 'default' => $this->defaults['body_font'], 'sanitize_callback' => 'caper_google_font_sanitization' ) ); $wp_customize->add_control( new caper_Google_Font_Select_Custom_Control( $wp_customize, 'sample_google_font_select', array( 'label' => __( 'Choose a Font for your Theme', 'caper' ), 'description' => esc_html__( 'All Google Fonts sorted alphabetically', 'caper' ), 'section' => 'typography', 'input_attrs' => array( 'font_count' => 'all', 'orderby' => 'alpha', ), ) ) );