Last active
January 2, 2019 16:04
-
-
Save mintplugins/d121a8d6a30d257e8c9b6012404fbb9a to your computer and use it in GitHub Desktop.
This file contains 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
// Google Analytics | |
function my_website_google_analytics(){ | |
// Don't track visits by logged-in administrators | |
if ( current_user_can( 'update_plugins' ) ) { | |
return; | |
} | |
?> | |
<!-- Replace me with Google Analytics Tracking Code --> | |
<?php | |
} | |
add_action( 'wp_head', 'my_website_google_analytics' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment