Created
September 21, 2012 01:06
-
-
Save Pushplaybang/3759214 to your computer and use it in GitHub Desktop.
add and register scripts conditionally for IE from the wordpress functions PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add ie conditional html5 shim to header | |
function add_ie_html5_shim () { | |
global $is_IE; | |
if ($is_IE) | |
wp_register_script ('html5shim', "http://html5shim.googlecode.com/svn/trunk/html5.js"); | |
wp_enqueue_script ('html5shim'); | |
} | |
add_action('wp_head', 'add_ie_html5_shim'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment