WordPress 5.2 Theme Structure
As of WordPress 5.2, the new theme structure should use the newly introduced wp_body_open() function
<?php // WordPress 5.2 Theme Structure ?> <html> <head> .. .. <?php wp_head(); ?> </head> <body> <?php wp_body_open(); ?> .. .. <?php wp_footer(); ?> </body> </html>