最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > WordPress > WordPress教程 >

wordpress后台加载字体慢

时间:2014-06-04 20:47来源:未知 作者:最模板zuimoban 点击:
现在谷歌在中国很多地区都打不开或者速度十分的慢了,加载谷歌的字体库势必会让我们的wordpress后台一直卡在加载的环节,所以就粗线了大家说的进wordpress后台变慢,变卡的问题了。。。这

现在谷歌在中国很多地区都打不开或者速度十分的慢了,加载谷歌的字体库势必会让我们的wordpress后台一直卡在加载的环节,所以就粗线了大家说的进wordpress后台变慢,变卡的问题了。。。这是有解决方法的,那就是在主题的functions.php文件末尾加上

代码一:

 
  1. // Remove Open Sans that WP adds from frontend
  2. if (!function_exists('remove_wp_open_sans')) :
  3.     function remove_wp_open_sans() {
  4.         wp_deregister_style( 'open-sans' );
  5.         wp_register_style( 'open-sans', false );
  6.     }
  7.     add_action('wp_enqueue_scripts', 'remove_wp_open_sans');
  8.  
  9.     // Uncomment below to remove from admin
  10.     // add_action('admin_enqueue_scripts', 'remove_wp_open_sans');
  11. endif;

代码二:

 
  1. function remove_open_sans() {
  2.     wp_deregister_style( 'open-sans' );
  3.     wp_register_style( 'open-sans', false );
  4.     wp_enqueue_style('open-sans','');
  5. }
  6. add_action( 'init', 'remove_open_sans' );

再打开后台看看吧,是否秒开了?不用谢大叔,大叔是雷锋。。

(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容