Changeset 19593 for trunk/wp-includes/general-template.php
- Timestamp:
- 12/13/2011 11:45:31 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r19528 r19593 2081 2081 * @param string $file Optional. Style handle name or file name (without ".css" extension) relative 2082 2082 * to wp-admin/. Defaults to 'wp-admin'. 2083 * @param bool $force_echo Optional. 2083 * @param bool $force_echo Optional. Force the stylesheet link to be printed rather than enqueued. 2084 2084 */ 2085 2085 function wp_admin_css( $file = 'wp-admin', $force_echo = false ) { … … 2092 2092 2093 2093 if ( $wp_styles->query( $handle ) ) { 2094 if ( $force_echo || did_action( 'wp_print_styles' ) ) // we already printed the style queue. 2094 if ( $force_echo || did_action( 'wp_print_styles' ) ) // we already printed the style queue. Print this one immediately 2095 2095 wp_print_styles( $handle ); 2096 2096 else // Add to style queue
Note: See TracChangeset
for help on using the changeset viewer.