hexo博客添加访问量统计

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)