Skip to content

Instantly share code, notes, and snippets.

@nciske
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nciske/9202505 to your computer and use it in GitHub Desktop.
Save nciske/9202505 to your computer and use it in GitHub Desktop.
Force IE 8 to not suck quite so much
<?php
// Tell IE to display content in the highest mode available
add_action( 'genesis_meta', 'force_ie_display_mode', 1 );
function force_ie_display_mode() {
echo '<meta http-equiv="X-UA-Compatible" content="IE=edge">';
}
@nciske
Copy link
Author

nciske commented Feb 25, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment