码迷,mamicode.com
首页 > 其他好文 > 详细

别让Open Sans字体拖慢wordpress后台速度

时间:2014-06-16 10:27:08      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   com   

  最近打开wordpress后台是不是很慢?国内GG登不上了?这两者有没什么直接的联系?没错,WordPress后台是自动加载的谷歌Open Sans字体,据说gg服务器已经迁移到阿嘛丽可,需要一些小手段才能访问。既然如此,那就把Open Sans字体屏蔽了吧。

  将如下代码复制到主题文件function.php

1
2
3
4
5
6
7
8
9
10
11
12
13
//禁用Open Sans字体
 
  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‘ );

   保存,上传,刷新一下,是不是能以正常速度打开了?

bubuko.com,布布扣

别让Open Sans字体拖慢wordpress后台速度,布布扣,bubuko.com

别让Open Sans字体拖慢wordpress后台速度

标签:style   class   blog   code   http   com   

原文地址:http://www.cnblogs.com/ytkah/p/3783627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!