Hugo Google Analytics 模塊

谷歌分析是一項免費的網絡分析服務,為搜索引擎優化(SEO)和營銷目的提供統計數據和基本分析工具。

Modulegithub.com/hugomods/google-analytics
StatsGitHub Stars Used By Used By Used By Used By

安裝

導入模塊

1module:
2  imports:
3  - path: github.com/hugomods/google-analytics
1[module]
2  [[module.imports]]
3    path = 'github.com/hugomods/google-analytics'
1{
2   "module": {
3      "imports": [
4         {
5            "path": "github.com/hugomods/google-analytics"
6         }
7      ]
8   }
9}

導入模板

1<head>
2  {{ partialCached "google-analytics/index" . .Params.analyze }}
3</head>

站點配置

services.googleAnalytics.ID

名稱上下文類型必填默認值版本示例
services.googleAnalytics.ID-string---G-XXXXXXXX

衡量 ID。

站點配置示例

hugo.yaml

1services:
2  googleAnalytics:
3    ID: G-XXXXXXXXXX

hugo.toml

1[services]
2  [services.googleAnalytics]
3    ID = 'G-XXXXXXXXXX'

hugo.json

1{
2   "services": {
3      "googleAnalytics": {
4         "ID": "G-XXXXXXXXXX"
5      }
6   }
7}

頁面參數

analyze

名稱上下文類型必填默認值版本示例
analyze-boolean-true--

false 時,不追蹤當前頁。