WordPress禁用后台Google Open Sans字体,网站加速
点击数: 1834
总之,关闭不需要的功能,就可以加速
开启主题的functions.php贴入下面代码
[emaillocker][cc lang="php"] /** * WordPress后台禁用Google Open Sans字体,网站加速*/ add_filter( 'gettext_with_context', 'wpdx_disable_open_sans', 888, 4 ); function wpdx_disable_open_sans( $translations, $text , $context, $domain ) { if ( 'Open Sans font: on or off' == $context && 'on' == $text ) { $translations = 'off'; } return $translations; }[/cc] [/emaillocker]