所以我有一个问题,想看看是否有人遇到过这样的事情。
因此,基本上,我正在运行其他国家/地区的wordpress网站,并根据语言将字体应用于特定的wordpress网站。我在韩国网站上应用了“ Nanum Gothic”字体。
说明:
从我的角度来看(基于美国)-我看到的是正确的'Nanum Gothic'字体!应该显示出来的,但是他们看到了另一种字体。
问题:
我在韩国的用户看到的是'Magnum Gothic'字体,在我的wordpress文件中完全没有引用-这怎么可能?在韩国,可以限制我覆盖Nanum Gothic字体吗?
在我的代码或模板中的任何地方,我绝对没有引用Magnum Gothic。
参考:_variables.scss
Korean font family based on local team request
$korean: $whitney, 'Nanum Gothic', sans-serif;
参考:theme-rtl.css / project-rtl.css / project.css / theme.css
/**
* Font family for Korean site
*/
html[lang="ko-KR"] body {
font-family: "Whitney A", "Whitney B", "Nanum Gothic", sans-serif; }
html[lang="ko-KR"] body h1, html[lang="ko-KR"] body h2, html[lang="ko-KR"] body h3, html[lang="ko-KR"] body h4, html[lang="ko-KR"] body h5, html[lang="ko-KR"] body h6 {
font-family: "Whitney A", "Whitney B", "Nanum Gothic", sans-serif; }
有人处理过这样的事情吗?我可以使用可以从韩语一侧查看网页的VPN吗?
非常感谢您提供的所有帮助!