Current File : /var/www/kurt6690.2978.w2868/site96340/wp-content/themes/hopeui/inc/wordpress-shims.php
<?php
/**
 * Shims for recent WordPress functions
 *
 * @package hopeui
 */

/**
 * Adds backwards compatibility for wp_body_open() introduced with WordPress 5.2
 */
if ( ! function_exists( 'wp_body_open' ) ) {
	/**
	 * Run the wp_body_open action.
	 *
	 * @return void
	 */
	function wp_body_open() {
		do_action( 'wp_body_open' );
	}
}