Reply To: Baloo google font missing

Home Forums Support Baloo google font missing Reply To: Baloo google font missing

Home Forums Support Baloo google font missing Reply To: Baloo google font missing

#229298
Tom
Lead Developer
Lead Developer

I just tested it and it seems to work for me.

This is the function you would add:

add_filter( 'generate_typography_customize_list','generate_add_google_fonts' );
function generate_add_google_fonts( $fonts )
{
	$fonts[ 'baloo_bhai' ] = array( 'name' => 'Baloo Bhai' );
	
	return $fonts;
}