Skip to content

Instantly share code, notes, and snippets.

@fueledbyboredom
Created February 14, 2017 16:24
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 fueledbyboredom/a2928380ff08212abd0252b7bf58b1af to your computer and use it in GitHub Desktop.
Save fueledbyboredom/a2928380ff08212abd0252b7bf58b1af to your computer and use it in GitHub Desktop.
Use Google's version of the HTML5 shim for older versions of Internet Explorer
<?php
function mwpf_IEhtml5_shim () {
global $is_IE;
if ($is_IE)
echo '<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->';
}
add_action('wp_head', 'mwpf_IEhtml5_shim');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment