How to replace the font in 2

How to replace the font in 2 places with the standard one that was originally


Please try selecting a font in Apperance/Customize/Fonts that supports Cyrillic characters.

Can be more

Hi,

​Please send more details about this question, and we will do our best to help you.

Also, if I you mean to add more fonts, please try this PHP snippet:

add_filter(
	'style_loader_tag',
	function($tag, $handle, $href, $media){
		if('google-fonts' !== $handle){
			return $tag;
		}
		
		$tag = str_replace($href, $href.'&subset=cyrillic', $tag);
		
		return $tag;
	},
	1000,
	4
);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.