Skip to content

Instantly share code, notes, and snippets.

@SitesByYogi
Created August 22, 2024 17:42
Show Gist options
  • Save SitesByYogi/2301175b511934e9829c60d527fbef72 to your computer and use it in GitHub Desktop.
Save SitesByYogi/2301175b511934e9829c60d527fbef72 to your computer and use it in GitHub Desktop.
Employ Conditional Script Loading
<?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