Created
May 24, 2019 22:03
-
-
Save ronalfy/6b7f43e70e644320aba67d1876a0aeff to your computer and use it in GitHub Desktop.
WordPress 5.2 Body Open Instructions for Metronet 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
<body> | |
<?php | |
// Make sure wp_body_open function exists for backwards compatibility | |
if ( function_exists( 'wp_body_open' ) ) { | |
wp_body_open(); | |
} else { | |
do_action( 'body_open' ); | |
} | |
?> | |
<~-- rest of body goes here --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment