Changeset 55981 for trunk/src/wp-content/themes/twentyfifteen/functions.php
- Timestamp:
- 06/22/2023 06:09:37 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfifteen/functions.php
r55929 r55981 436 436 wp_enqueue_style( 'twentyfifteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentyfifteen-style' ), '20230122' ); 437 437 438 // Loadthe Internet Explorer specific stylesheet.439 wp_ enqueue_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style' ), '20220908' );438 // Register the Internet Explorer specific stylesheet. 439 wp_register_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style' ), '20220908' ); 440 440 wp_style_add_data( 'twentyfifteen-ie', 'conditional', 'lt IE 9' ); 441 441 442 // Loadthe Internet Explorer 7 specific stylesheet.443 wp_ enqueue_style( 'twentyfifteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentyfifteen-style' ), '20141210' );442 // Register the Internet Explorer 7 specific stylesheet. 443 wp_register_style( 'twentyfifteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentyfifteen-style' ), '20141210' ); 444 444 wp_style_add_data( 'twentyfifteen-ie7', 'conditional', 'lt IE 8' ); 445 445
Note: See TracChangeset
for help on using the changeset viewer.