Skip to content

Snippet: Add New “Standard” Font Options

function myprefix_add_new_standard_fonts( $array ) {
	$array[] = 'Century Gothicfunction myprefix_add, CenturyGothic, AppleGothic, sans-serif';
	return $array;
}
add_filter( 'wpex_standard_fonts_array', 'myprefix_add_new_standard_fonts' );
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