如何在 wordpress 埋入 GA code

目前 Google Analytics 已經升級至 GA4,從前綴的追蹤碼 UA- 開頭轉換為 G- 開頭,令許多前端框架的套件還趕不上變化。
以下介紹如何在 wordpress 介面插入追蹤碼:

在 GA 建立帳號與資源

這一步公司目前已經建置完成,建置的方法須先建立網站資源(網址 url),建立完畢後可在進階選項同時安裝新舊版的 GA code.

wordpress 安裝 GA 步驟

安裝外掛 Insert Headers and Footers

安裝任何外掛程式前先 google wp 外掛黑名單,查看安全並安裝後記得跑跑看網站以免中毒.

埋入 GA code

舊版 UA- 開頭

GA3
1
2
3
4
5
6
7
8
9
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXX-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-XXXXXXXXX-1');
</script>

新版 G- 開頭

GA4
1
2
3
4
5
6
7
8
9
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-XXXXXXXXXX');
</script>
克服 Javascript 的奇怪部分 運算子 touch 與 click 事件

評論

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×