Changeset 45256 for trunk/src/wp-content/themes/twentyeleven/functions.php
- Timestamp:
- 04/23/2019 01:03:14 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/functions.php
r45218 r45256 884 884 } 885 885 add_filter( 'widget_tag_cloud_args', 'twentyeleven_widget_tag_cloud_args' ); 886 887 if ( ! function_exists( 'wp_body_open' ) ) : 888 /** 889 * Fire the wp_body_open action. 890 * 891 * Added for backwards compatibility to support pre 5.2.0 WordPress versions. 892 * 893 * @since Twenty Eleven 3.3 894 */ 895 function wp_body_open() { 896 /** 897 * Triggered after the opening <body> tag. 898 * 899 * @since Twenty Eleven 3.3 900 */ 901 do_action( 'wp_body_open' ); 902 } 903 endif;
Note: See TracChangeset
for help on using the changeset viewer.