text 向标头添加跟踪代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 向标头添加跟踪代码相关的知识,希望对你有一定的参考价值。

<?php

// first, create the function to put your tracking code into

function add_tracking_info_to_head() {

// paste your tracking code between the ?> and <?php below – in this case it's for Google Analytics
?>

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-4008777-25"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-4008777-25');
</script>

  <?php
}

// then, call that action by name and insert it using the WordPress wp_head hook
add_action ('wp_head', 'add_tracking_info_to_head', 99);

以上是关于text 向标头添加跟踪代码的主要内容,如果未能解决你的问题,请参考以下文章

向标头添加授权

向标头添加授权

如何在 Jquery Ajax 中向请求添加标头?

text 向页脚添加跟踪代码

text 将电子商务跟踪代码添加到感谢页面

如何从.csv文件向JTable中的列添加标头