更改默认WordPress样式的并不是字体很棒。我也使用引导。一个叫做脚手架的文件。less用以下内容替代WordPress默认值:
// Body reset
html {
font-size: 10px;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
font-family: @font-family-base;
font-size: @font-size-base;
line-height: @line-height-base;
color: @text-color;
background-color: @body-bg;
}
我刚刚用将其添加到我的自定义CSS文件(原始WordPress CSS)中!重要事项:
/* Override Bootstrap Reset with WP default */
body {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif !important;
}
现在WordPress看起来应该再次出现了。