I’m coding a theme that uses the Twitter Bootstrap 3 files and in the header I want to include:
<!--[if lt IE 9]>
<script src="<?php echo get_stylesheet_directory_uri(); ?>/js/html5shiv.js"></script>
<script src="<?php echo get_stylesheet_directory_uri(); ?>/js/respond.min.js"></script>
<![endif]-->
I’ve been told by a theme reviewer that I can’t put it in the header file (only one js is allowed).
Required: Theme can include only one JS within header.php, please enqueue the additional > respond.min.js using the hook wp_enqueue_scripts in functions.php
as it is I have to enqueue it, but I don’t know how to do this in a way that put’s it in the “if it IE 9” statement.
Please could someone help me?
Thanks
You can do it in two ways….
Solution One:
Solution Two: