themekollektiv / popper

Popper is an accessible content-first WordPress theme built around beautiful fonts and lots of white space.
https://wordpress.org/themes/popper/
GNU General Public License v2.0
50 stars 15 forks source link

Add wp_body_open after opening body tag #28

Closed Zodiac1978 closed 3 years ago

Zodiac1978 commented 3 years ago

https://developer.wordpress.org/reference/functions/wp_body_open/

This function is for WP 5.2+, so it needs a shim.

For example we could add this to the functions.php:

if ( ! function_exists( 'wp_body_open' ) ) {

    /**
     * Shim for wp_body_open, ensuring backwards compatibility with versions of WordPress older than 5.2.
     */
    function wp_body_open() {
        do_action( 'wp_body_open' );
    }
}