什么是Google Analytics
Google Analytics 4 (GA4) 是 Google 的一种网络分析工具,可让你免费跟踪和衡量网站上的用户流量和行为。
给网站添加GA的跟踪代码
注册什么的直接跟着官方文档走,关键在于GA ID的设置上:
_internal/google_analytics.html
文件夹中
然后在博客layouts/partials/head/head.html
文件中使用该模板:
1{{/* 防止hugo server的流量也计入流量监测 */}}
2{{- if not .Site.IsServer -}}
3 {{- template "_internal/google_analytics_async.html" . -}}
4{{- end -}}
5{{- partial "head/custom.html" . -}}
注意hugo v0.120.0之后不再使用.Site.IsServer
:
在博客config文件中也添加:
1# GA Tracking ID
2services:
3 googleAnalytics:
4 id: G-yourID
最后虽然文档说是30分钟,但我却是过几个小时后才在Google Analytics上看到访客数据。