Skip to content

Instantly share code, notes, and snippets.

@ooooak
Created November 19, 2014 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ooooak/7ef9edfb3142bb9ac59c to your computer and use it in GitHub Desktop.
Save ooooak/7ef9edfb3142bb9ac59c to your computer and use it in GitHub Desktop.
wordpress load ie only
function load_ie_files(){
global $is_IE;
if (!$is_IE) {
}
}
add_action('wp_enqueue_scripts', 'load_ie_files');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment