为什么要使用单独的插件来更改字体?
您应该直接在主题的标题中添加字体,并相应地调整CSS。
例如,使用google fonts中的Roboto-https://fonts.google.com/?selection.family=Roboto:
在您的主题中header.php 在之前添加此行</head
>:
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
在您的主题中
style.css 根据需要将字体添加到元素中-例如:
body {
font-family: \'Roboto\', sans-serif;
}
如果您需要更多的帮助来了解这是如何工作的,我认为此资源可以作为一个很好的起点:
https://developers.google.com/fonts/docs/getting_started