Problem z polskimi znakami diakrytycznymi z Google fonts?
Użyj tego, znaki z odpowiednim kodowaniem na stronie dadzą dobry efekt w każdej przeglądarce. http://netwizards.com.pl/zasoby/darmowe-polskie-czcionki-google-fonts-z-polskimi-znakami/index.php?strona=7 Implementacja Google fonts w functions.php Adding Custom Google Fonts to WordPress with Enqueue function google_fonts() { $query_args = array( ’family’ => 'Open+Sans:400,700|Oswald:700′ ’subset’ => 'latin,latin-ext’, ); wp_register_style( 'google_fonts’, add_query_arg( $query_args, „//fonts.googleapis.com/css” ), array(), null ); } add_action (’wp_enqueue_scripts’, 'google_fonts’);
