加快網站訪問速度
最近 Google 又非常慢,并且有時無法打開,而 WordPress 后臺又使用了 Google 字體,導致 WordPress 加載非常慢,所以我們需要在 WordPress 中禁用 Google Fonts,將下面的代碼鐵入到當前主題的 functions.php 文件:
來源于:
https://blog.wpjam.com/m/disable-google-fonts/
add_filter( 'gettext_with_context', 'wpjam_disable_google_fonts', 888, 4);
function wpjam_disable_google_fonts($translations, $text, $context, $domain ) {
$google_fonts_contexts = array('Open Sans font: on or off','Lato font: on or off','Source Sans Pro font: on or off','Bitter font: on or off');
if( $text == 'on' && in_array($context, $google_fonts_contexts ) ){
$translations = 'off';
}
return $translations;
}
并且該功能已經整合到 WPJAM Basic 插件中,并且你可以在后臺隨時開啟或者關閉。