File "wordpress-shims.php"

Full Path: /home/timepamn/dailynetworth.org/wp-content/themes/kadence/inc/wordpress-shims.php
File size: 519 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Shims for recent WordPress functions
 *
 * @package kadence
 */

/**
 * 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() { // phpcs:ignore WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedFunctionFound
		do_action( 'wp_body_open' ); // phpcs:ignore WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedHooknameFound
	}
}