由于Typecho自带的gravatar头像很丑。
小程序调用微信头像,在网页版不显示。
于是想了个办法,统一所有头像。
首先打开在网站在目录下找到handsome主题里的component/comments.php文件,
大概在65行左右,这里↓↓↓。
<a class="pull-left thumb-sm" rel="nofollow">
…
</a>
替换如下:
<a class="pull-left thumb-sm" rel="nofollow">
<?php if ($comments->authorId == $comments->ownerId): ?>
<img nogallery src="自己的头像链接" class="avatar-40 photo img-circle" style="height:40px!important; width: 40px!important;">
<?php else: ?>
<img nogallery src="用户的头像链接" class="avatar-40 photo img-circle" style="height:40px!important; width: 40px!important;">
<?php endif; ?>
</a>
清下缓存刷新看看。舒服~
4 条评论
酱姐赛高!
你回复了个寂寞