使用 Google Analytics 追蹤文章標籤 (Tags) 在 Minimal Mistakes Jekyll Theme

想要分析部落格哪些文章類型最受歡迎,在網路上找到方法1,實際操作在 Minimal Mistakes 蠻簡單的。

一般來說 analytics 會是使用 google-universal 設定,修改 _includes/analytics-providers/google-universal.html

修改前

<script>
  ...

  ga('create', 'UA-9431648-15', 'auto');
  ga('send', 'pageview');
</script>

修改後


<script>
  ...

  ga('create', '{{ site.analytics.google.tracking_id }}', 'auto');
  ga('send', 'pageview');
  {% if page.tags.size > 0 %}
  {% for tag in page.tags %}
    ga('send', 'event', 'taggedPost', 'view', '{{ tag }}');
  {% endfor %}
  {% endif %}
</script>

留言