Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bhwebworks/4edc52f54af861204311 to your computer and use it in GitHub Desktop.
Save bhwebworks/4edc52f54af861204311 to your computer and use it in GitHub Desktop.
Attempt to force IE to use most recent rendering engine available
/**
* 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