wordpress不使用插件解决网站加载慢和头像不显示
21-04-13
slbcun
738℃
0
WordPress安装完成后,网站打开时,显示一直打转(加载慢),而且管理员用户头像引入错误。原因是WP加载了谷歌字体和国外的gravatar.com上的用户头像,理所当然被“墙”隔开了,导致网站加载慢,图片引入失败。
解决的办法是禁用谷歌字体,并把头像设置成国内网站的图片(或本地图片)。
给WordPress换一个主题(默认主题下更改functions.php会报错),然后找到/wp-content/主题目录/functions.php,在最后面,加上代码如下:
class Disable_Google_Fonts{ public function __construct(){ add_filter('gettext_with_context',array($this,'disable_open_sans'),888,4); } public function disable_open_sans($translations,$text,$context,$domain ){ if ('Open Sans font: on or off' == $context && 'on' == $text){ $translations = 'off'; } return $translations; } } $disable_google_fonts = new Disable_Google_Fonts; function dmeng_get_https_avatar($avatar) { //~ 替换为 https 的域名 $avatar = str_replace(array("www.gravatar.com", "0.gravatar.com", "1.gravatar.com", "2.gravatar.com"), "secure.gravatar.com", $avatar); //~ 替换为 https 协议 $avatar = str_replace("http://", "https://", $avatar); return $avatar; // return '<img alt="" src="http://avatar.csdn.net/4/E/A/3_misakaqunianxiatian.jpg" class="avatar avatar-26 photo" >'; } add_filter('get_avatar', 'dmeng_get_https_avatar');
第二个函数是用来替换头像的,return $avatar则是替换为secure.gravatar.com的默认头像,注释掉的return那一行,是引入自定义的图片路径。