Hexo博客添加访问量统计

Tips:前导必备
  • 博主博客地址
  • 博主使用的是yilia主题
  • 访问量统计使用不蒜子

1、配置是否开启不蒜子访问量统计功能

    在themes/yilia/_config.yml添加属性

# 是否开启访问量统计功能(不蒜子)
busuanzi:
 enable: true


2、引入不蒜子并添加站点访问量

    在themes/yilia/layout/_partial/footer.ejs末尾添加如下代码

<% if (theme.busuanzi && theme.busuanzi.enable){ %>
        
        
                本站总访问量
        
        
        
  <% } %>

Hexo博客添加访问量统计_第1张图片


3、添加文章访问量

    在themes/yilia/layout/_partial/post/date.ejs开头添加如下代码

<% if (theme.busuanzi && theme.busuanzi.enable && !index){ %>
        
        
<% } %>

Hexo博客添加访问量统计_第2张图片

  • 重启即可查看效果

4、作者寄语
Everything is ok. But you have to do by yourself.

你可能感兴趣的:(博客,访问量,hexo-yilia,hexo)