Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created February 24, 2018 00:12
Show Gist options
  • Save generatepress/5bfe6421020a2f78c18a37fe162853cb to your computer and use it in GitHub Desktop.
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/
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