2015-05-27 92 views
0

此代碼正在跟蹤Google Analytics上的作者綜合瀏覽量。但是,我想通過the_modified_author來跟蹤帖子的瀏覽量。修改Google Analytics自定義維度以跟蹤作者的修改作者?

任何人都可以請適應這個代碼嗎?感謝您的努力。

如果有人能夠做到這一點,我只需要跟蹤WordPress博客的作者,the_modified_author和類別。如果來自社區的人可以編輯此代碼(或提供不同的代碼),除了我真正的感謝和讚賞之外,我會從他們的願望清單中提供高達20美元左右的東西。

加入的functions.php

function google_load_file() { 
     $this_post = get_queried_object(); 
     $author_id = $this_post->post_author; 
     $name = get_the_author_meta('display_name', $author_id); 


     wp_enqueue_script('author-tracking', get_stylesheet_directory_uri() . '/js/google.js', array(), '1.0.0', true); 
     wp_localize_script('author-tracking', 'author', array('name' => $name)); 

} 
add_action('wp_print_scripts', 'google_load_file'); 

一個JS爲了這個目的

(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', 'UA-12345678-3', 'domain.com'); 
ga('require', 'displayfeatures'); 
ga('set', 'dimension1', author.name); 
ga('send', 'pageview'); 

回答

0

提出如果您在google_load_file功能使用get_the_modified_author()函數將返回作者的顯示名稱的文件,最後修改了帖子。至少這是該功能的描述:

檢索最後編輯當前帖子的作者。

返回值:作者的顯示名稱。

function google_load_file() { 
$this_post = get_queried_object();   
$name = get_the_modified_author(); 

wp_enqueue_script('author-tracking', get_stylesheet_directory_uri() . /js/google.js', array(), '1.0.0', true); 
     wp_localize_script('author-tracking', 'author', array('name' => $name)); 
} 

我認爲這隻會在單柱模板。

+0

非常感謝Eike Pierstorff。你知道我是否可以將你的代碼行添加到我的現有代碼中(以跟蹤兩者),還是應該複製我使用的代碼,根據你的代碼修改代碼,並且在文件中依次編寫代碼? –

+0

更改兩行:$ author_id = $ this_post-> post_author; $ name = get_the_author_meta('display_name',$ author_id);爲一行$ name = get_the_modified_author();.根據WordPress的文檔,這應該給你你想要的結果。 –

+0

爲了跟蹤這兩個變量(作者和the_modified_author,雖然? –

相關問題