由于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>

清下缓存刷新看看。舒服~

最后修改:2021 年 07 月 30 日
如果觉得我的文章对您有用,请随意赞赏