由于之前发过一篇 WordPress 禁用谷歌字体的方法, 该方法是用安装插件!

  由于后台插件越多导致网站打开速度慢, 那么我们能不用插件就尽量别用.

  本篇文章黄坤教大家如何不用插件去解决谷歌字体打开缓慢的问题.

  1. 首先我们找到你的站点主题的 functions.php 文件, 在 wp-content hemes 你的主题名称的文件夹里面

  2. 打开 functions.php , 我们会看到首页第一行的 

functions.php

  3. 我们只要在首页第一行代码

//禁用 Open Sans
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;

  如图:

2

  即可解决 WordPress 谷歌字体问题!