时间: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谷歌字体问题!
关键词:字体,方法,解决