1
gangsta 2014-06-24 18:28:32 +08:00
在functions.php写个函数就OK了
Google : WP remove open sans |
2
belin520 2014-06-24 18:30:48 +08:00
|
3
XXOO 2014-06-24 18:32:21 +08:00
不是有360 镜像么
|
4
shiniv 2014-06-24 20:14:13 +08:00
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; |
5
X-Force 2014-06-24 20:15:06 +08:00
|
6
decken 2014-06-24 20:25:13 +08:00
一开始我还以为是哪个插件带的, 排查了老半天也没查出来
|
8
webjin 2014-06-24 23:45:23 +08:00
|
9
chian 2014-06-24 23:56:48 +08:00
直接注释掉这一段
// $open_sans_font_url = "//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=$subsets"; 路径wp-includes\script-loader.php |
10
notcome 2014-06-25 07:43:09 +08:00 via iPhone
这是样式写入 PHP 嘛……
|
11
coolicer 2014-06-25 09:00:33 +08:00
我那是主题加的,我直接去CSS去掉。
|
12
hisway 2014-06-25 10:05:48 +08:00
主题中查找到fonts.googleapis.com这段,直接替换成国内的字体库,百度,360都有,很好用。
|
13
johnnyR 2014-06-25 15:03:36 +08:00 1
这个问题这几天很火,这是我的收集: http://dalongmao.sinaapp.com/archives/144
|
14
kingme 2014-06-25 16:42:50 +08:00
安装插件,disable google font
|
20
XXOO 2014-06-25 20:52:56 +08:00
|