Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ronalfy/6b7f43e70e644320aba67d1876a0aeff to your computer and use it in GitHub Desktop.
Save ronalfy/6b7f43e70e644320aba67d1876a0aeff to your computer and use it in GitHub Desktop.
WordPress 5.2 Body Open Instructions for Metronet Tag Manager
<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