/**
* ✅ Add Defer Attribute to All JS Except jQuery Core
*/
function add_defer_to_scripts( $tag, $handle, $src ) {
// Do not defer jQuery — it's often required by plugins
if ( strpos( $handle, 'jquery' ) !== false ) {
return $tag;
}
// Add 'defer' to all other scripts
if ( is_admin() ) {
return $tag;
}
return '';
}
add_filter( 'script_loader_tag', 'add_defer_to_scripts', 10, 3 );
Members - Living Well With Diabetes
Skip to content