中国でfonts.googleapis.comが読み込めなくて開かないときの解決方法
中国は相変わらずgoogleと相性が悪いですね。
最近特に管理画面が開かないと思うときはこちらのプラグインを入れてみて下さい。
「Disable Google Fonts」
もしくはfunctions.phpに直接こちらのコードを書いてみて下さい。
[sourcecode]
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;
[/sourcecode]
原因はコレ
「fonts.googleapis.com」が読込できずタイムアウトいっぱいまで時間がかかるからです。
だからもちろんVPNをいれれば一発で表示される。
もしお困りの方は試してみては。
[newspicks url=”https://newspicks.com/news/2232157″]