如何屏蔽网站中的谷歌字体
问题:
你好张老师,我是这个网站的建站学员,我自己搭建了一个网站。开始的时候是可以显示的,但是现在主页部分除开头部之外就不能正常显示了。
我的问题是网站需要加载fonts.googleapis.com和ajax.googleapis.com;而且还有gravatar被屏蔽的问题。我用VPS,用VPS之后看主页是都能够正常显示的。
所以我的问题是:我想将fonts.googleapis.com和ajax.googleapis.com 替换成 fronts.useso.com和ajax.useso.com. 我要上哪里去找这几行代码呢?
我的后台安装了wp停用谷歌字体插件 disable-google-fonts,按照论坛之前的一个老帖子我也尝试过将下面代码贴到function.php的结尾但是好像不管用。
//屏蔽gravatar,调用多说缓存图片
function duoshuo_avatar($avatar) {
$avatar = str_replace(array("www.gravatar.com","0.gravatar.com","1.gravatar.com","2.gravatar.com"),"gravatar.duoshuo.com",$avatar);
return $avatar;
}
add_filter( 'get_avatar', 'duoshuo_avatar', 10, 3 );
function duoshuo_avatar($avatar) {
$avatar = str_replace(array("www.gravatar.com","0.gravatar.com","1.gravatar.com","2.gravatar.com"),"gravatar.duoshuo.com",$avatar);
return $avatar;
}
add_filter( 'get_avatar', 'duoshuo_avatar', 10, 3 );
希望老师能够提供一个让我解决这个问题的方法。谢谢!
答:wordpress程序的升级,调用了谷歌字体,就导致了网站打开速度缓慢,解决方法就是去屏蔽谷歌字体。可以按照这个方法:https://www.xuewangzhan.net/wpbbs/9051.html
wordpress程序的升级,调用了谷歌字体,就导致了网站打开速度缓慢,解决方法就是去屏蔽谷歌字体。可以按照这个方法:https://www.xuewangzhan.com/wpbbs/9051.html