V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
hfeeki
V2EX  ›  程序员

wordpress3.8 如何禁用 google 字体?

  •  
  •   hfeeki · 2014-06-24 18:08:03 +08:00 · 4353 次点击
    这是一个创建于 3585 天前的主题,其中的信息可能已经有所发展或是发生改变。
    在wordpress的网站下载了disable google font 这个插件,安装了,但是没有效果
    21 条回复    2014-11-16 10:02:44 +08:00
    gangsta
        1
    gangsta  
       2014-06-24 18:28:32 +08:00
    在functions.php写个函数就OK了

    Google : WP remove open sans
    XXOO
        3
    XXOO  
       2014-06-24 18:32:21 +08:00
    不是有360 镜像么
    shiniv
        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;
    X-Force
        5
    X-Force  
       2014-06-24 20:15:06 +08:00
    decken
        6
    decken  
       2014-06-24 20:25:13 +08:00
    一开始我还以为是哪个插件带的, 排查了老半天也没查出来
    qinix
        7
    qinix  
       2014-06-24 21:45:49 +08:00 via iPhone
    webjin
        8
    webjin  
       2014-06-24 23:45:23 +08:00
    chian
        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
    notcome
        10
    notcome  
       2014-06-25 07:43:09 +08:00 via iPhone
    这是样式写入 PHP 嘛……
    coolicer
        11
    coolicer  
       2014-06-25 09:00:33 +08:00
    我那是主题加的,我直接去CSS去掉。
    hisway
        12
    hisway  
       2014-06-25 10:05:48 +08:00
    主题中查找到fonts.googleapis.com这段,直接替换成国内的字体库,百度,360都有,很好用。
    johnnyR
        13
    johnnyR  
       2014-06-25 15:03:36 +08:00   ❤️ 1
    这个问题这几天很火,这是我的收集: http://dalongmao.sinaapp.com/archives/144
    kingme
        14
    kingme  
       2014-06-25 16:42:50 +08:00
    安装插件,disable google font
    hfeeki
        15
    hfeeki  
    OP
       2014-06-25 19:40:16 +08:00
    @kingme 我上面说过,插件不起作用
    hfeeki
        16
    hfeeki  
    OP
       2014-06-25 19:40:53 +08:00
    @hisway 怎么替换?
    谁知道怎样替换成本地字体?
    hfeeki
        17
    hfeeki  
    OP
       2014-06-25 19:41:34 +08:00
    @XXOO 360的镜像在哪里?怎样替换成360的镜像?
    hfeeki
        18
    hfeeki  
    OP
       2014-06-25 20:29:56 +08:00
    @belin520 谷歌现在国内都没法上了,你还弄个谷歌的链接,你这样会让我更加抑郁的~^~
    trigger
        19
    trigger  
       2014-06-25 20:32:23 +08:00
    @johnnyR 解决了 进后台很快
    XXOO
        20
    XXOO  
       2014-06-25 20:52:56 +08:00
    itfanr
        21
    itfanr  
       2014-11-16 10:02:44 +08:00
    @X-Force 好用 谢谢!
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   4715 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 09:54 · PVG 17:54 · LAX 02:54 · JFK 05:54
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.