Changeset 61389 for trunk/src/wp-includes/class-wp-styles.php
- Timestamp:
- 12/17/2025 06:55:51 AM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-styles.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-styles.php
r61358 r61389 119 119 public function __construct() { 120 120 if ( 121 function_exists( 'is_admin' ) && ! is_admin() 122 && 123 function_exists( 'current_theme_supports' ) && ! current_theme_supports( 'html5', 'style' ) 121 ( 122 function_exists( 'is_admin' ) && 123 ! is_admin() 124 ) 125 && 126 ( 127 function_exists( 'current_theme_supports' ) && 128 ! current_theme_supports( 'html5', 'style' ) 129 ) 124 130 ) { 125 131 $this->type_attr = " type='text/css'";
Note: See TracChangeset
for help on using the changeset viewer.