Changeset 47221 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 02/09/2020 06:24:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r47219 r47221 2891 2891 function wp_footer() { 2892 2892 /** 2893 * Sets up the Admin Bar if the current theme does not use `wp_body_open`. 2894 * 2895 * @since 5.4.0 2896 */ 2897 if ( ! did_action( 'wp_body_open' ) ) { 2898 add_action( 'wp_footer', 'wp_admin_bar_render', 1000 ); 2899 } 2900 /** 2893 2901 * Prints scripts or data before the closing body tag on the front end. 2894 2902 *
Note: See TracChangeset
for help on using the changeset viewer.