Skip to content

Instantly share code, notes, and snippets.

@khigashi
Created December 14, 2017 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khigashi/9c845530a4f30e1ac28be9878208c02d to your computer and use it in GitHub Desktop.
Save khigashi/9c845530a4f30e1ac28be9878208c02d to your computer and use it in GitHub Desktop.
<?
//Como cadastrar uma dimensão no Analytics: https://support.google.com/analytics/answer/2709829?hl=pt-BR
function rastrear_postautor_analytics(){
if (is_singular('post')){
?>
<script>
jQuery(document).ready(function() {
ga('send', 'pageview', {
'dimension1': '<?php echo get_the_author_meta('display_name', get_queried_object()->post_author); ?>'
});
});
</script>
<?php }
}
add_action ('wp_head', 'rastrear_postautor_analytics');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment