Created
November 27, 2014 03:55
-
-
Save bhwebworks/4edc52f54af861204311 to your computer and use it in GitHub Desktop.
Attempt to force IE to use most recent rendering engine available
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Attempt to force IE to use most recent rendering engine available | |
* | |
* @link http://blackhillswebworks.com/?p=5578 | |
* @link https://www.modern.ie/en-us/performance/how-to-use-x-ua-compatible | |
*/ | |
add_action( 'genesis_meta', 'bhww_head_meta_ie_compatibility_mode_fix' ); | |
function bhww_head_meta_ie_compatibility_mode_fix() { | |
echo "\n"; | |
echo '<meta http-equiv="X-UA-Compatible" content="IE=Edge" />'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment