WordPress中禁用远程avatar头像,国内总出现加载缓慢问题
1、在/usr/local/nginx/html/http/blog/wp-content/themes/honeypress/functions.php文件最后添加以下代码:
function remove_avatar($avatar) {
return $avatar='';
}
add_filter('get_avatar', 'remove_avatar');
2、这样在博客页面下方就不会再显示图片了,但图片会占位展示,如下图:
这样也不太友好,接下来很简单,直接找到前端css文件把这部分html标签隐藏掉即可。
3.找到/usr/local/nginx/html/http/blog/wp-content/themes/honeypress/style.css样式文件,在以下代码中加入display:none即可,如下:
.blog-author .avatar {
margin: 0 2.5rem 0px 0;
height: 12.5rem;
width: 12.5rem;
display:none;
}
4.这样就可以把博客页面上的头像隐藏掉.
1 COMMENT