Changeset 46287 for trunk/src/wp-includes/class.wp-styles.php
- Timestamp:
- 09/24/2019 02:55:56 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class.wp-styles.php
r46171 r46287 118 118 */ 119 119 public function __construct() { 120 if ( ! is_admin() && ! current_theme_supports( 'html5', 'style' ) ) { 120 if ( 121 function_exists( 'is_admin' ) && ! is_admin() 122 && 123 function_exists( 'current_theme_supports' ) && ! current_theme_supports( 'html5', 'style' ) 124 ) { 121 125 $this->type_attr = " type='text/css'"; 122 126 }
Note: See TracChangeset
for help on using the changeset viewer.