Skip to content

Instantly share code, notes, and snippets.

@leemcalilly
Created August 30, 2012 22:11
Show Gist options
  • Save leemcalilly/3542654 to your computer and use it in GitHub Desktop.
Save leemcalilly/3542654 to your computer and use it in GitHub Desktop.
/*-----------------------------------------------------------------------------------*/
/* Load responsive IE scripts */
/*-----------------------------------------------------------------------------------*/
add_action( 'wp_footer', 'woo_load_responsive_IE_footer', 10 );
if ( ! function_exists( 'woo_load_responsive_IE_footer' ) ) {
function woo_load_responsive_IE_footer () {
$html = '';
echo '<!--[if !IE]> -->'. "\n";
echo '<script src="' . get_template_directory_uri() . '/includes/js/respond-IE.js"></script>'. "\n";
echo '<!-- <![endif]-->'. "\n";
echo $html;
} // End ()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment