remove jquery migrate from wordpress code example
Example: remove jquery migrate from wp site
Removing jQuery migrate from WordPress is quite easy. You just need to add the
following lines of code to your theme’s functions.php file.
function remove_jquery_migrate( $scripts ) {
if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
$script = $scripts->registered['jquery'];
if ( $script->deps ) {
$script->deps = array_diff( $script->deps, array( 'jquery-migrate' ) );
}
}
}
add_action( 'wp_default_scripts', 'remove_jquery_migrate' );