Created
December 14, 2017 20:10
-
-
Save khigashi/9c845530a4f30e1ac28be9878208c02d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
//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