时间: 2020-08-18|57次围观|0 条评论

找到模版函数文件(functions.php),在这个文件添加如下代码:

// 后台禁用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;
}

本博客所有文章如无特别注明均为原创。
复制或转载请以超链接形式注明转自起风了,原文地址《解决WordPress 后台打开速度慢的问题
   

还没有人抢沙发呢~