Skip to content

Instantly share code, notes, and snippets.

@Pushplaybang
Created September 21, 2012 01:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Pushplaybang/3759214 to your computer and use it in GitHub Desktop.
Save Pushplaybang/3759214 to your computer and use it in GitHub Desktop.
add and register scripts conditionally for IE from the wordpress functions PHP
// 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