Skip to content

Instantly share code, notes, and snippets.

@mwender
Created November 8, 2013 16:13
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 mwender/7373424 to your computer and use it in GitHub Desktop.
Save mwender/7373424 to your computer and use it in GitHub Desktop.
Force IE to render a site in the latest version of its rendering engine. Useful to add to functions.php for WordPress themes.
if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false ) )
header('X-UA-Compatible: IE=edge,chrome=1');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment