wordpress后台打开缓慢的临时解决方法最近打开博客后台,发现后台打开速度很慢。 通过开发者调试工具对网络加载进行检测,发现是由于后台使用了谷歌字体的API。由于谷歌在大陆被墙了,导致我们的浏览器会反复的请求谷歌服务器而无法正常加载页面。以前有很多网站使用的是谷歌CDN的,现在最好替换成国内的新浪、百度CDN,不然网站会拖的死慢甚至出错。 因此简单的解决方案就是禁用谷歌的字体api。 解决方法是在当前主题的functions.php中加入下面的代码:
//禁用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;