google被封对wordpress的影响
这段时间google被封,我们使用wordpress博客的用户多少会有点影响,google不能访问,或者说访问慢,对于有的人来说是件好事,对于有的人来说是件不爽的事。或者说因为google被封,损失不可估量。切入正题,很多人说wordpress慢了,下面我总结下慢的原因,也算是对前文的总结。
wordpress后台慢的处理方法
后台是加载了google的字体。解决方法是:
1.在主题中的functions.php文件末尾加上
代码1
// Remove Open Sans that WP adds from frontend if (!function_exists('remove_wp_open_sans')) : function remove_wp_open_sans() { wp_deregister_style( 'open-sans' ); wp_register_style( 'open-sans', false ); } add_action('wp_enqueue_scripts', 'remove_wp_open_sans'); // Uncomment below to remove from admin // add_action('admin_enqueue_scripts', 'remove_wp_open_sans'); endif;代码2
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' );
2.360提供了CDN加速,修改方法:把wp-includes/script-loader.php文件中的fonts.googleapis.com替换为fonts.useso.com。
wordpress前台慢的处理方法
前台慢,有可能是加载了google的JS代码,其他元素暂不说。
咱们把google的改成国内的。
比较常用的版本:
http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
http://lib.sinaapp.com/js/jquery/1.4.2/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
http://lib.sinaapp.com/js/jquery/1.8.2/jquery.js
对应相应的版本修改,上面的东东是什么?请百度。
万恶的GFW!FUCK!