Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Crocoblock/acfe55297157dd818f76dacb2a09912d to your computer and use it in GitHub Desktop.
Save Crocoblock/acfe55297157dd818f76dacb2a09912d to your computer and use it in GitHub Desktop.
Add Google Tag Manager to JetThemeCore
<?php
/**
* Add Google Tag Manager code for the <head> tag.
*/
function custom_add_gtm_code() {
?>
<!-- Add your GTM code snippet below this line -->
<?php
}
add_action( 'wp_head', 'custom_add_gtm_code' );
/**
* Add Google Tag Manager code for the <body> tag.
*/
function custom_add_gtm_code_noscript() {
?>
<!-- Add your GTM code snippet below this line -->
<?php
}
add_action( 'wp_body_open', 'custom_add_gtm_code_noscript' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment