php 使用ACF创建Google Analytics字段和输出
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用ACF创建Google Analytics字段和输出相关的知识,希望对你有一定的参考价值。
<?php
<!-- Google Analytics -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', '<?php the_field('tracking_code', 'option'); ?>', 'auto');
ga('send', 'pageview');
</script>
<!-- GA Tracking -->
<?php if ( have_rows('event_code_generator', 'option' ) ): ?>
<script>
$(document).ready(function() {
// GA Tracking
<?php while ( have_rows('event_code_generator', 'option') ) : the_row(); ?>
$('<?php the_sub_field('id_or_class'); ?><?php the_sub_field('element_name'); ?>').on('<?php the_sub_field('action'); ?>', function() {
ga('send', 'event', '<?php the_sub_field('category'); ?>', '<?php the_sub_field('action'); ?>', '<?php the_sub_field('label'); ?>');
});
<?php endwhile; ?>});
</script>
<?php endif;
以上是关于php 使用ACF创建Google Analytics字段和输出的主要内容,如果未能解决你的问题,请参考以下文章
php 为ACF设置Google API密钥
php API KEY Google每个ACF cosa mettere在function.php中
php 带有Marker Spiderfier for ACF的基本Google Maps结构
php 使用ACF字段创建包含短代码的HREF链接
php 使用ACF字段创建包含短代码的HREF链接
在帖子创建期间计算 PHP date_diff 并保存到 ACF 字段