板邓:wordpress禁用谷歌字体加速网站

wordpress搭建网站普遍遇到的问题,网站有时候后台或者前台加载特别慢 ,想死的心都有!

那是加载谷歌字体的原因,有时候访问快是因为缓存,谷歌字体更新了,访问又变成乌龟了!

解决办法:在functions.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;
}
?>

 

posted @ 2016-08-09 14:24  贵隆  阅读(192)  评论(0编辑  收藏  举报