angyLe
8/22/2015 - 12:27 PM

html5shiv for wordpress From http://www.tongtastic.com/2013/05/16/html5-shiv-function-for-wordpress/

/**
 * html5_shiv function.
 * 
 * @access public
 * @return void
 */
function html5_shiv() {
        ?>
        <!-- IE Fix for HTML5 Tags -->
        <!--[if lt IE 9]>
        <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
        <![endif]-->
        <?php
}
if(!is_admin()) {
        add_action('wp_head','html5_shiv');
}