Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a wordpress theme, how do you conditionally include scripts for ie8 and below? This is primarily to apply polyfills for various html5/css3 features. I see that wp has the $is_IE variable which can be used as a conditional to only include scripts for IE. Is there a way to add the script for only certain versions of IE though rather than all of them? This is simple with some html ie conditional comments, but I'd like to include the scripts all in the same place in my functions file.

Conditional for specific versions in HTML:

<!--[if lt IE 9]> <script src="iepolyfill.min.js"></script> <![endif]-->

Conditional for all IE in WP:

    global $is_IE;

    if ( $is_IE ) {
        wp_enqueue_script( 'iepolyfill', bloginfo('stylesheet_directory').'/js/iepolyfill.min.js' );
    }

I've looked around and mainly find details about conditional scripts for wp backend only.

Any suggestions?

share|improve this question

3 Answers

up vote 2 down vote accepted

As wordpress is a PHP script, it can access server variable via $_SERVER

Then you can search for detect browser with PHP, PHP: If internet explorer 6, 7, 8 , or 9

share|improve this answer
hahaha, oh yea. duh. Thanks for the forehead smack! – circlecube Jul 19 '12 at 16:08
2  
What about cached ve – David Hobs Oct 10 '12 at 13:15
  • You should use wp_register_script() whenever you add scripts to your WP themes or plugins.
  • Server side sniffing is generaly bad idea, because it's unsure.
  • Usually you want to target browsers lacking sertain features, not necessarily only IE browser. Modernzr is good scripts to do just that.

For IE, conditional tags work very well. Here's how you can add conditional tags into a script, example is for HTML5shiv:

global $wp_scripts;
wp_register_script( 
    'html5shiv', 
    get_bloginfo('template_url').'/assets/js/html5shiv.js', 
    array(), 
    '3.6.2'
    );
$wp_scripts->add_data( 'html5shiv', 'conditional', 'lt IE 9' );
share|improve this answer
FYI, this is theoretically a great solution, but it doesn’t actually work. See my answer for details. – Andrew P Apr 25 at 17:32

In my opinion, the best solution is (using the example of html5shim):

$html5shim = create_function( '', 'echo \'<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->\';' );
add_action( 'wp_head', $html5shim );

Having PHP code inside a string is difficult to read, which is why I split the create_function out into it’s own line, but it’s necessary for PHP < 5.3 compatibility. If, however, you are using PHP 5.3+, you can use this far more readable version:

add_action( 'wp_head', function() {
   echo '<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->';
} );

The solution provided by Mikael Korpela is great in theory (ideal even), but it doesn’t actually work. It turns out that adding conditional comments is only implemented for the WP_Styles class, not for WP_Scripts. I found this out when trying that solution and being surprised to find that it didn’t wrap the script element in any conditional comments. So I researched it and found this answer on the WP stackexchange and this ticket in WP trac. Unfortunately for our purposes, that patch now seems unlikely to make it into core based on the comment thread. Another proposed solution is a script_loader_tag filter like the already existing style_loader_tag, but that ticket has been languishing in WP trac for 6 months.

So, long story short, the only two (reasonable) solutions available to you are server-side browser sniffing, as suggested by Trinh Hoang Nhu, and manually generating the script element with conditional elements yourself on the wp_head action or within your theme’s header.php file. As others have mentioned, server-side browser sniffing is a bad idea, both practically (it is unreliable) and theoretically (browser detection is very much a client-side issue).

Which leaves using the wp_head action. When specified as an anonymous function, as in my example in the beginning of the answer, you can include your conditional scripts at the same time as enqueueing your other scripts in your functions.php file. Perhaps it will eventually be possible through wp_register_script and wp_enqueue_script, which would definitely be better, but considering that conditional comments are a backwards-facing technology and have been removed from IE 10, I wouldn’t count on it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.