由于之前發(fā)過一篇wordpress禁用谷歌字體的方法,該方法是用安裝插件!
由于后臺插件越多導(dǎo)致網(wǎng)站打開速度慢,那么我們能不用插件就盡量別用.
本篇文章黃坤教大家如何不用插件去解決谷歌字體打開緩慢的問題.
1.首先我們找到你的站點(diǎn)主題的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谷歌字體問題!
本篇文章由黃坤的站長博客編輯 原文轉(zhuǎn)載請注明出處:
申請創(chuàng)業(yè)報(bào)道,分享創(chuàng)業(yè)好點(diǎn)子。點(diǎn)擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!