Skip to content

Instantly share code, notes, and snippets.

@lenivene
Created May 21, 2019 18:16
Show Gist options
  • Save lenivene/ba45af8b06f02ece3221ef8cb364e7f5 to your computer and use it in GitHub Desktop.
Save lenivene/ba45af8b06f02ece3221ef8cb364e7f5 to your computer and use it in GitHub Desktop.
Function in order to support previous versions of WordPress < 5.2
<?php
/**
* Function in order to support previous versions of WordPress
*/
if ( ! function_exists( 'wp_body_open' ) ) {
function wp_body_open() {
do_action( 'wp_body_open' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment