Skip to content

Snippet: Add Custom Font To The Customizer

// Add custom font to font settings
// This is for NON-Google Fonts
// For google fonts see here: http://total.wpexplorer.com/docs/snippets/add-new-google-fonts/
function wpex_add_custom_fonts() {
	return array( 'My Custom Font' ); // You can add more then 1 font to the array!
}
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top