黄聪:如何删除wordpress登录之后wp_footer、wp_head自行加载的Open Sans字体、fonts.googleapis.com连接导致卡死的问题
2020-12-13 02:23
标签:c style class blog code java 有时候在浏览自己的WordPress网站时,发现网页长时间无响应,
卡在正在连接到fonts.googleapis.com ,如下图所示:
查看网页源码时,发现Head里面有如下一段代码: 这段代码表示当前网页在线连接了谷歌的字体服务器,卡在“正在连接到fonts.googleapis.com”,可能是当前的网络无法访问该服务器或者比较慢。 解决办法: 在functions.php里面添加如下代码即可: 黄聪:如何删除wordpress登录之后wp_footer、wp_head自行加载的Open
Sans字体、fonts.googleapis.com连接导致卡死的问题,搜素材,soscw.com 黄聪:如何删除wordpress登录之后wp_footer、wp_head自行加载的Open
Sans字体、fonts.googleapis.com连接导致卡死的问题 标签:c style class blog code java 原文地址:http://www.cnblogs.com/huangcong/p/3764745.htmllink rel=’stylesheet’ id=’open-sans-css’ href=’//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=3.8′ type=’text/css’ media=’all’ />
add_filter(‘gettext_with_context‘, ‘disable_open_sans‘, 888, 4 );
function disable_open_sans( $translations, $text, $context, $domain )
{
if ( ‘Open Sans font: on or off‘ == $context && ‘on‘ == $text ) {
$translations = ‘off‘;
}
return $translations;
}
文章标题:黄聪:如何删除wordpress登录之后wp_footer、wp_head自行加载的Open Sans字体、fonts.googleapis.com连接导致卡死的问题
文章链接:http://soscw.com/essay/25490.html