Skip to content

Instantly share code, notes, and snippets.

@spigists
Created June 10, 2013 21:49
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 spigists/5752697 to your computer and use it in GitHub Desktop.
Save spigists/5752697 to your computer and use it in GitHub Desktop.
Use Google's version of HTML5 shim but only for old versions of IE
/**
* Use Google's version of HTML5 shim but only for old versions of IE
*/
function iehtml5_shim () {
global $is_IE;
if ($is_IE)
echo '<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->';
}
add_action('wp_head', 'iehtml5_shim');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment