如何改变WordPress网站的整体字体?

时间:2016-06-19 04:42:13

标签: css wordpress fonts wordpress-theming

我使用Duster作为我的主题。我想更改默认字体。有没有办法做到这一点?

3 个答案:

答案 0 :(得分:0)

您可以使用Easy Google Fonts Plugin

第1步安装插件,然后转到=> setting =>谷歌字体。如果要更改整个网站字体系列更改,请添加一个css选择器,然后添加一个body css选择器。

第2步转到=> Apperance => customize =>排版=>主题排版=>添加您要使用的字体系列。

答案 1 :(得分:0)

...或者,如果您不喜欢插件,只需执行此操作并在标题中的所有其他样式表之后添加样式表:

body {
    font-family:Whatever, "Whatever In Space", sans-serif; /* Actual fonts of course chosen by you */
}

如果这不起作用并且改为font-family:Whatever, "Whatever In Space", sans-serif !important;,则使用!important通常被认为是最后的手段。

答案 2 :(得分:0)

如果您想在不使用任何插件的情况下更改字体,可以按照以下步骤操作:

  1. 例如,如果要将字体更改为BYekan或任何其他字体,则必须在wp-content->themes->my theme->font中创建字体文件夹。
  2. 将字体上传到此文件夹。
  3. 在CSS文件的开头,添加以下行:

    @font-face {
        font-family: 'BYekan';
        src: url('font/WebYekan.eot');
        src: url('font/WebYekan.eot?#iefix') format('embedded-opentype'),
             url('font/WebYekan.woff') format('woff'),
             url('font/WebYekan.ttf') format('truetype'),
             url('font/WebYekan.svg#WebYekan') format('svg');
        font-weight: normal;
        font-style: normal;
    }
    @font-face {
        font-family: 'BKoodakBold';
        src: url('font/BKoodakBold.eot');
        src: url('font/BKoodakBold.eot?#iefix') format('embedded-opentype'),
             url('font/BKoodakBold.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
        -moz-font-feature-settings: "calt=0,liga=0";
    }
    
  4. font-family更改为:

    font-family:"BKoodakBold",BKoodak,byekan,Arial,Helvetica Neue,sans-serif;
    

    您想要更改字体的任何地方。