我已經使用wordpress建站3年多了,這個問題我也遇到過,不過比較好解決,禁用Google字型可以加快網站開啟速度。
第二種方法,是修改程式碼,以下程式碼新增到當前主題functions.php中。
$disable_google_fonts = new Disable_Google_Fonts;
這兩種方法基本就可以了,禁用谷歌字型後,網站開啟速度明顯變快。
我已經使用wordpress建站3年多了,這個問題我也遇到過,不過比較好解決,禁用Google字型可以加快網站開啟速度。
第二種方法,是修改程式碼,以下程式碼新增到當前主題functions.php中。
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;
這兩種方法基本就可以了,禁用谷歌字型後,網站開啟速度明顯變快。