跟踪WordPress的内部用户(Tracking internal users on wordpr

2019-09-03 12:51发布

我们有一个内部的WordPress站点,以及大约25个用户。 我们目前的谷歌分析建立将告诉我们有多少次页面已被访问,但因为大家都来自同一个IP地址,它认为,它基本上是一个非常勤劳的人点击了很多。

有没有人有跟踪单个用户的策略?

(他们都登录到WordPress作为我们的单点登录的功能。)

Answer 1:

您可以使用_setCustomVar方法从的JavaScript API提供当前用户的用户名。 据我所知,没有GA插件WordPress支持这一点,所以你需要直接把你的跟踪代码到主题或编写自定义插件它。 然后,自定义变量将显示在谷歌Analytics(分析)段。 为了获得当前用户可以使用wp_get_current_user API调用 。

然后,您的跟踪代码会是这个样子:

<?php
    if (is_user_logged_in()) {
        $user = wp_get_current_user();
        $userName = $user->user_login;
    }
?>
<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-Y']);
<?php if (isset($userName)) : ?>
  _gaq.push(['_setCustomVar', 1, 'Username', <?php echo(json_encode($userName)); ?>, 1]);
<?php endif; ?>
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
</script>

对于通用Analytics(分析)版本

<?php
    if (is_user_logged_in()) {
        $user = wp_get_current_user();
        $userName = $user->user_login;
    }
?>
<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','https://www.google-analytics.com/analytics.js','ga');

    ga('create', 'UA-XXXX-1', 'auto');
    <?php if (isset($userName)) : ?>
        ga('set', 'userId', <?php echo(json_encode($userName)); ?>); // Set the user ID using signed-in user_id.
    <?php endif; ?>
    ga('send', 'pageview');
</script>


Answer 2:

我共同撰写名为流一个用来跟踪登录的用户活动。 基本上,它的设计是一切的详细审计线索,发生在WP管理区。

它还组织由用户,上下文,动作和IP地址的活动,这样可以很容易地过滤/其后搜查。

更多信息:

  • http://wptavern.com/stream-a-wordpress-plugin-to-track-and-monitor-changes-in-the-admin
  • http://x-team.com/2013/12/stream-track-every-change-made-on-your-wordpress-site/
  • https://github.com/x-team/wp-stream


文章来源: Tracking internal users on wordpress