自从 Google 被国内全面屏蔽以来,造成了谷歌的许多服务404了,这里就包括谷歌字体。这造成国内许多独立博客(尤其适用 WordPress 的)访问超级慢。当然也包括我的网站。 当然我也采取了一些措施,例如: 1、安装插件“ Disable Google Fonts ”,安装并激活。 2、许多博主说的在主题fuctions.phg文件中添加以下代码: //禁用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; 不过据我测试,以上两种方法都没有什么实质的改善,依然有网友反映我的网站加载缓慢。好不容易备案了,用了国内的服务器,总不能比国外还差吧!今天终于找到一个好方法:使用 360 前端公共库 CDN 服务代理访问 Google 字体库。我使用了下,确实效果十足!(虽然我平时比较讨厌360,不过这个确实赞。) 以下是具体的使用方法: 第一种:修改网站目录文件 wp-includesscript-loader.php,找到:fonts.googleapis.com,替换成:fonts.useso.com。 第二种:利用 WordPress 插件修改,插件下载地址:http://www.soulteary.com/usr/uploads/2014/06/Replace-Google-Fonts.zip (作者为了防盗链,请复制网址后再打开) 插件说明地址:http://www.soulteary.com/2014/06/08/replace-google-fonts.html(感谢soulteary童鞋开发了这个插件) Loading... 自从 Google 被国内全面屏蔽以来,造成了谷歌的许多服务404了,这里就包括谷歌字体。这造成国内许多独立博客(尤其适用 WordPress 的)访问超级慢。当然也包括我的网站。 当然我也采取了一些措施,例如: 1、安装插件“ Disable Google Fonts ”,安装并激活。 2、许多博主说的在主题fuctions.phg文件中添加以下代码: <!--more--> <pre class="lang:default decode:true">//禁用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;</pre> 不过据我测试,以上两种方法都没有什么实质的改善,依然有网友反映我的网站加载缓慢。好不容易备案了,用了国内的服务器,总不能比国外还差吧!今天终于找到一个好方法:使用 360 前端公共库 CDN 服务代理访问 Google 字体库。我使用了下,确实效果十足!(虽然我平时比较讨厌360,不过这个确实赞。) <strong>以下是具体的使用方法:</strong> 第一种:修改网站目录文件 wp-includesscript-loader.php,找到:fonts.googleapis.com,替换成:fonts.useso.com。 第二种:利用 WordPress 插件修改,插件下载地址:http://www.soulteary.com/usr/uploads/2014/06/Replace-Google-Fonts.zip (作者为了防盗链,请复制网址后再打开) 插件说明地址:<a href="http://www.soulteary.com/2014/06/08/replace-google-fonts.html" target="_blank">http://www.soulteary.com/2014/06/08/replace-google-fonts.html</a>(感谢soulteary童鞋开发了这个插件) © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏
2 条评论
不光字体,连头像也屏蔽了,还好找到办法解决了
我现在都懒的折腾了