How To Add IE8 HTML5 Functionality to WordPress Theme
1 2 3 4 5 6 |
function add_ie_html5_shim () { echo '<!--[if lt IE 9]>'; echo '<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>'; echo '<![endif]-->'; } add_action('wp_head', 'add_ie_html5_shim'); |