/**
* Snippet Name: Removes jQuery Migrate
* Snippet Author: coding-bunny.com
* Description: Removes jQuery Migrate from the frontend to improve performance.
*/
function cb_disable_jquery_migrate( $scripts ) {
// Check if not in admin area and jQuery is registered
if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
$jquery_script = $scripts->registered['jquery'];
// Remove jQuery Migrate dependency if present
if ( ! empty( $jquery_script->deps ) ) {
$jquery_script->deps = array_diff( $jquery_script->deps, [ 'jquery-migrate' ] );
}
}
}
add_action( 'wp_default_scripts', 'cb_disable_jquery_migrate', 150 );
Removes jQuery Migrate
Removes jQuery Migrate from the frontend to improve performance.