其原因很简单,目前国内正在整治色情行业,避免不了会伤到谷歌。就连最近的谷歌seo/seo.html" target="_blank">搜索引擎地址都很难打开。
解决方法只有禁止加载Google Open Sans 字体
代码:
在主题中的functions.php文件末尾加上:
function remove_open_sans(){
wp_deregister_style('open-sans');
wp_register_style('open-sans',false);
wp_enqueue_style('open-sans','');}
add_action('init','remove_open_sans');
在打开wordpress后台试试,是不是快了好几倍。