wordpress加速之优化Google字体的方法

在主题目录的这个文件functions.php中加载一段代码,就可以有效的屏蔽谷歌代码,代码如下:

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

 

打赏
帝国cms网址导航分类目录网站程序源码
上一篇
WordPress中国加速插件:WP Acceleration for China
下一篇
生成中...
二维码标题