- Timestamp:
- 10/07/2025 11:32:04 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwentyone/functions.php
r56556 r60913 631 631 */ 632 632 function twentytwentyone_add_ie_class() { 633 ?> 634 <script> 635 if ( -1 !== navigator.userAgent.indexOf( 'MSIE' ) || -1 !== navigator.appVersion.indexOf( 'Trident/' ) ) { 636 document.body.classList.add( 'is-IE' ); 637 } 638 </script> 639 <?php 633 $script = " 634 if ( -1 !== navigator.userAgent.indexOf('MSIE') || -1 !== navigator.appVersion.indexOf('Trident/') ) { 635 document.body.classList.add('is-IE'); 636 } 637 "; 638 $script .= '//# sourceURL=' . rawurlencode( __FUNCTION__ ); 639 640 if ( function_exists( 'wp_print_inline_script_tag' ) ) { 641 wp_print_inline_script_tag( $script ); 642 } else { 643 echo "<script>$script</script>\n"; 644 } 640 645 } 641 646 add_action( 'wp_footer', 'twentytwentyone_add_ie_class' );
Note: See TracChangeset
for help on using the changeset viewer.