域名預(yù)訂/競(jìng)價(jià),好“米”不錯(cuò)過(guò)
由于之前發(fā)過(guò)一篇wordpress禁用谷歌字體的方法,該方法是用安裝插件!
由于后臺(tái)插件越多導(dǎo)致網(wǎng)站打開(kāi)速度慢,那么我們能不用插件就盡量別用.
本篇文章黃坤教大家如何不用插件去解決谷歌字體打開(kāi)緩慢的問(wèn)題.
1.首先我們找到你的站點(diǎn)主題的functions.php文件,在wp-content\themes\你的主題名稱\的文件夾里面
2.打開(kāi)functions.php ,我們會(huì)看到首頁(yè)第一行的
3.我們只要在首頁(yè)第一行代碼
//禁用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谷歌字體問(wèn)題!
本篇文章由黃坤的站長(zhǎng)博客編輯 原文轉(zhuǎn)載請(qǐng)注明出處:
申請(qǐng)創(chuàng)業(yè)報(bào)道,分享創(chuàng)業(yè)好點(diǎn)子。點(diǎn)擊此處,共同探討創(chuàng)業(yè)新機(jī)遇!