• 请不要在回答技术问题时复制粘贴 AI 生成的内容
hfeeki
V2EX  ›  程序员

wordpress3.8 如何禁用 google 字体?

  •  
  •   hfeeki · Jun 24, 2014 · 5210 views
    This topic created in 4340 days ago, the information mentioned may be changed or developed.
    在wordpress的网站下载了disable google font 这个插件,安装了,但是没有效果
    21 replies    2014-11-16 10:02:44 +08:00
    gangsta
        1
    gangsta  
       Jun 24, 2014
    在functions.php写个函数就OK了

    Google : WP remove open sans
    XXOO
        3
    XXOO  
       Jun 24, 2014
    不是有360 镜像么
    shiniv
        4
    shiniv  
       Jun 24, 2014
    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  
       Jun 24, 2014
    decken
        6
    decken  
       Jun 24, 2014
    一开始我还以为是哪个插件带的, 排查了老半天也没查出来
    qinix
        7
    qinix  
       Jun 24, 2014 via iPhone
    chian
        9
    chian  
       Jun 24, 2014
    直接注释掉这一段
    // $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  
       Jun 25, 2014 via iPhone
    这是样式写入 PHP 嘛……
    coolicer
        11
    coolicer  
       Jun 25, 2014
    我那是主题加的,我直接去CSS去掉。
    hisway
        12
    hisway  
       Jun 25, 2014
    主题中查找到fonts.googleapis.com这段,直接替换成国内的字体库,百度,360都有,很好用。
    johnnyR
        13
    johnnyR  
       Jun 25, 2014   ❤️ 1
    这个问题这几天很火,这是我的收集: http://dalongmao.sinaapp.com/archives/144
    kingme
        14
    kingme  
       Jun 25, 2014
    安装插件,disable google font
    hfeeki
        15
    hfeeki  
    OP
       Jun 25, 2014
    @kingme 我上面说过,插件不起作用
    hfeeki
        16
    hfeeki  
    OP
       Jun 25, 2014
    @hisway 怎么替换?
    谁知道怎样替换成本地字体?
    hfeeki
        17
    hfeeki  
    OP
       Jun 25, 2014
    @XXOO 360的镜像在哪里?怎样替换成360的镜像?
    hfeeki
        18
    hfeeki  
    OP
       Jun 25, 2014
    @belin520 谷歌现在国内都没法上了,你还弄个谷歌的链接,你这样会让我更加抑郁的~^~
    trigger
        19
    trigger  
       Jun 25, 2014
    @johnnyR 解决了 进后台很快
    XXOO
        20
    XXOO  
       Jun 25, 2014
    itfanr
        21
    itfanr  
       Nov 16, 2014
    @X-Force 好用 谢谢!
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3271 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 79ms · UTC 14:10 · PVG 22:10 · LAX 07:10 · JFK 10:10
    ♥ Do have faith in what you're doing.