Ticket #48887: 48887.patch
File 48887.patch, 1.9 KB (added by , 5 years ago) |
---|
-
wp-admin/admin-header.php
204 204 </head> 205 205 <?php 206 206 /** 207 * Fire the admin_body_open action in all admin pages. 208 * 209 * @since 5.4.0 210 */ 211 do_action( 'admin_body_open' ); 212 213 /** 207 214 * Filters the CSS classes for the body tag in the admin. 208 215 * 209 216 * This filter differs from the {@see 'post_class'} and {@see 'body_class'} filters -
wp-includes/theme-compat/header-embed.php
30 30 ?> 31 31 </head> 32 32 <body <?php body_class(); ?>> 33 <?php 34 /** 35 * Fire the embed_body_open action in the embed template. 36 * 37 * @since 5.4.0 38 */ 39 do_action( 'embed_body_open' ); 40 ?> 41 No newline at end of file -
wp-includes/theme-compat/header.php
49 49 <?php wp_head(); ?> 50 50 </head> 51 51 <body <?php body_class(); ?>> 52 <?php wp_body_open(); ?> 53 52 54 <div id="page"> 53 55 54 56 <div id="header" role="banner"> -
wp-login.php
197 197 ?> 198 198 </head> 199 199 <body class="login no-js <?php echo esc_attr( implode( ' ', $classes ) ); ?>"> 200 <?php 201 /** 202 * Fire the login_body_open action in the login page. 203 * 204 * @since 5.4.0 205 */ 206 do_action( 'login_body_open' ); 207 ?> 200 208 <script type="text/javascript"> 201 209 document.body.className = document.body.className.replace('no-js','js'); 202 210 </script>