Created
June 25, 2019 11:54
-
-
Save hslaszlo/89b46eb3a42cf9a6e3c4ae71fefa42e5 to your computer and use it in GitHub Desktop.
ga
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
| <?php | |
| function analytics_tracking_code(){ | |
| echo ‘ | |
| <!-- Global site tag (gtag.js) - Google Analytics --> | |
| <script async src="https://www.googletagmanager.com/gtag/js?id=GA_MEASUREMENT_ID"></script> | |
| <script> | |
| window.dataLayer = window.dataLayer || []; | |
| function gtag(){dataLayer.push(arguments);} | |
| gtag(\'js\', new Date()); | |
| gtag(\’config\', \'GA_MEASUREMENT_ID\'); | |
| </script> | |
| ’; | |
| } | |
| add_action('wp_head', 'analytics_tracking_code'); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment