3

社内に WordPress サイトがあり、約 25 人のユーザーがいます。現在の Google アナリティクスの設定では、ページが何回アクセスされたかがわかりますが、全員が同じ IP アドレスからアクセスしているため、基本的には非常に勤勉な 1 人の人物が大量にクリックしていると考えられます。

個々のユーザーを追跡するための戦略を持っている人はいますか?

(シングルサインオンの機能として、全員が WordPress にログインしています。)

4

2 に答える 2

9

JavaScript APIから_setCustomVarメソッドを使用して、現在のユーザーのユーザー名を提供できます。私の知る限り、Wordpress 用の GA プラグインはこれをサポートしていないため、トラッキング コードをテーマに直接配置するか、テーマ用のカスタム プラグインを作成する必要があります。カスタム変数は、Google アナリティクスでセグメントとして表示されます。現在のユーザーを取得するには、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>

ユニバーサル アナリティクス バージョンの場合:

<?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>
于 2013-05-16T12:30:20.627 に答える
5

I co-authored called Stream that tracks logged-in user activity. Basically, it's designed to be a detailed audit trail of everything that happens in the WP Admin area.

It also organizes the activity by user, context, action and IP address so it can be easily filtered/searched later.

More information:

于 2014-02-12T19:08:41.430 に答える