0%

hexo 博客搭建之访问量统计

为 hexo 博客添加访问量统计功能


不蒜子访问量统计

Site: 不蒜子

next 主题默认已内置不蒜子相关功能,具体路径:themes/next/layout/_third-party/statistics/busuanzi-counter.swig

所以只需编辑 主题配置文件:_config.next.yml 启用即可。

1
2
3
4
5
6
7
8
9
10
# Show Views / Visitors of the website / page with busuanzi.
# Get more information on http://ibruce.info/2015/04/04/busuanzi
busuanzi_count:
enable: true
total_visitors: true
total_visitors_icon: fa fa-user
total_views: true
total_views_icon: fa fa-eye
post_views: true
post_views_icon: fa fa-eye

共有两种计算方式:

  • pv :单个用户连续点击n篇文章,记录n次访问量。
  • uv:单个用户连续点击n篇文章,只记录1次访客数。

百度统计

Site: 百度统计

此方式只能通过百度统计平台查看访问量,将不会在博客中展示访问量

首先通过百度统计 新增网站 ->获取代码

1
2
3
4
5
6
7
8
9
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?6f8c4c7aa31d1ab010a0b34261fb2021";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>

我们只需要将 https://hm.baidu.com/hm.js?6f8c4c7aa31d1ab010a0b34261fb2021 中的 6f8c4c7aa31d1ab010a0b34261fb2021 复制到 主题配置文件:_config.next.yml 中即可。

1
2
# Baidu Analytic`
baidu_analytics: 6f8c4c7aa31d1ab010a0b34261fb2021

之后,我们就可以通过百度统计平台查看博客访问量了。