Hexo博客添加访问量统计

Tips:前导必备

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

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

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


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

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

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


3、添加文章访问量

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

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

  • 重启即可查看效果

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

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