Created
August 22, 2024 17:42
-
-
Save SitesByYogi/2301175b511934e9829c60d527fbef72 to your computer and use it in GitHub Desktop.
Employ Conditional Script Loading
This file contains hidden or 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
<?php | |
function load_scripts_based_on_browser() { | |
global $is_IE; | |
if (!$is_IE) { | |
// Modern browsers | |
wp_enqueue_script('modern-js', 'path_to_modern_script.js', array(), null, true); | |
} else { | |
// Legacy browsers | |
wp_enqueue_script('legacy-js', 'path_to_legacy_script.js', array(), null, true); | |
} | |
} | |
add_action('wp_enqueue_scripts', 'load_scripts_based_on_browser'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment