谷歌打不开,wordpress后台反应慢

最近几天谷歌一直无法打开,天朝怎么了。wp后台打开非常慢,wp后台由于用了谷歌的字体导致一直链接不上导致速度慢。
打开主题functions.php文件。加入如下代码屏蔽掉谷歌字体。

1
add_filter( 'gettext_with_context', 'close_open_sans' , 10, 4 );
1
function close_open_sans( $s, $text, $context, $domain ) {
1
if ( 'Open Sans font: on or off' == $context && 'on' == $text ) {
1
$s = 'off';
1
}
1
return $s;
1
}
What do you think?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
Comments
  • Latest
  • Oldest
  • Hottest
Powered by Waline v3.5.6