Skip to content

Add Custom Font To The Customizer

Important

This is an older snippet, for new versions of the theme use the Font Manager.

/** 
 * Add custom font to font settings
 * This is for NON-Google Fonts
 * For google fonts see here: http://totalwptheme.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)
Related Snippets
Back To Top