18143453325 在线咨询 在线咨询
18143453325 在线咨询
所在位置: 首页 > 营销资讯 > 建站知识 > wordpress不用插件解决谷歌字体的方法!

wordpress不用插件解决谷歌字体的方法!

时间:2022-07-30 11:54:01 | 来源:建站知识

时间:2022-07-30 11:54:01 来源:建站知识

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

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

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

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

2.打开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;

如图:

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

 

本篇文章由黄坤的站长博客编辑 原文转载请注明出处:

关键词:字体,方法,解决

74
73
25
news

版权所有© 亿企邦 1997-2022 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭