Skip to content

Instantly share code, notes, and snippets.

@peterwilsoncc
Created October 12, 2011 23:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save peterwilsoncc/1282923 to your computer and use it in GitHub Desktop.
Save peterwilsoncc/1282923 to your computer and use it in GitHub Desktop.
Conditional commented JavaScript in WordPress
<?php
function mytheme_html5shiv() {
$result = "";
$result .= '<!--[if lt IE 9]>';
$result .= '<script src="';
$result .= $parent['js'];
$result .= '/html5shiv.js"></script>';
$result .= '<![endif]-->' . "\n";
echo $result;
}
add_action('wp_print_scripts', 'mytheme_html5shiv');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment