wordpress 关闭谷歌字体

可以使用百度站长工具检测

 

 

第二种方法:注释或删除掉style.css和function.php有关加载Google字体的代码fonts.googleapis.com即可。

在项目文件中搜索fonts.googleapis.com..

把https://fonts.googleapis.com/css 这行代码注释掉即可

 

第三种方法:将以下代码添加到主题目录下的functions.php中(推荐)

//关闭谷歌字体

class Disable_Google_Fonts {
  public function __construct() {
  add_filter( 'gettext_with_context', array( $this, 'disable_open_sans' ), 888, 4 );
  }
  public function disable_open_sans( $translations, $text, $context, $domain ) {
    if ( 'Open Sans font: on or off' == $context && 'on' == $text ) {
    $translations = 'off';
    }
    return $translations;
  }
}
$disable_google_fonts = new Disable_Google_Fonts;

 

其他方法:

方法:安装“Disable Google Fonts”插件

主要针对使用核心程序的。也可以通过如下方法实现对核心程序的处理:

在/wp-includes/script-loader.php中
大约在581行,把//fonts.googleapis.com/…这行代码删除即可。
,直接安装这个插件也行。

上一篇:【Selenium】Option加载用户配置,Chrom命令行参数


下一篇:PhpStorm注册码免费试用一年