Changeset 32597
- Timestamp:
- 05/25/2015 04:34:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.wp-styles.php
r32483 r32597 62 62 } 63 63 64 return wp_styles()->do_items( $handles );64 return $wp_styles->do_items( $handles ); 65 65 } 66 66 … … 153 153 */ 154 154 function wp_enqueue_style( $handle, $src = false, $deps = array(), $ver = false, $media = 'all' ) { 155 global $wp_styles;156 155 _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); 157 156 … … 182 181 /** 183 182 * Check whether a CSS stylesheet has been added to the queue. 184 *185 * @global WP_Styles $wp_styles The WP_Styles object for printing styles.186 183 * 187 184 * @since 2.8.0
Note: See TracChangeset
for help on using the changeset viewer.