creativedotdesign / tofino

WordPress boilerplate theme on a modern stack. NPM and Composer.
Other
29 stars 6 forks source link

Add wp_body_open() Hook for GTM etc #326

Closed danimalweb closed 3 years ago

danimalweb commented 3 years ago

Add <?php wp_body_open(); ?> so we can easily hook in for GTM scripts.

// Add Google Tag code which is supposed to be placed after opening body tag.
function add_custom_body_open_code() {
    if (function_exists('gtm4wp_the_gtm_tag')) { gtm4wp_the_gtm_tag(); } 
}
add_action('wp_body_open', 'add_custom_body_open_code');