Created
May 21, 2019 18:16
-
-
Save lenivene/ba45af8b06f02ece3221ef8cb364e7f5 to your computer and use it in GitHub Desktop.
Function in order to support previous versions of WordPress < 5.2
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
<?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