Created
February 24, 2018 00:12
-
-
Save generatepress/5bfe6421020a2f78c18a37fe162853cb to your computer and use it in GitHub Desktop.
Add GTM inside the <body> element using this plugin: https://wordpress.org/plugins/duracelltomi-google-tag-manager/
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
add_action( 'generate_before_header', 'tu_add_gtm_code', 0 ); | |
function tu_add_gtm_code() { | |
if ( function_exists( 'gtm4wp_the_gtm_tag' ) ) { | |
gtm4wp_the_gtm_tag(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment