text 将Google Analytics添加到WordPress主题functions.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 将Google Analytics添加到WordPress主题functions.php相关的知识,希望对你有一定的参考价值。

// originally based on https://gist.github.com/kenhowardpdx/8484076
// updated to current gtag.js snippet and moved to head
function rtp_init_analytics() {
    $analytics_id = 'YOUR UA CODE HERE';

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

// filter out administrators
if (!is_admin()) {
    if(!current_user_can( 'manage_options' ) ) {
        add_action('wp_head', 'rtp_init_analytics', 35);
    }
}

以上是关于text 将Google Analytics添加到WordPress主题functions.php的主要内容,如果未能解决你的问题,请参考以下文章

php 将Google Analytics添加到页面

添加到 AppDelegate 时找不到 Google/Analytics.h 文件

php 将Google Analytics跟踪代码添加到WordPress的简单插件

php 将Google Analytics跟踪代码添加到WordPress的简单插件

如何将 Google Analytics 跟踪 ID 添加到 GitHub 页面

将Google Analytics添加到apache中的所有网页