Skip to content

Instantly share code, notes, and snippets.

@marioloncarek
Created April 23, 2020 11:54
Show Gist options
  • Select an option

  • Save marioloncarek/261be95ae2cd521eedcc6f8065799394 to your computer and use it in GitHub Desktop.

Select an option

Save marioloncarek/261be95ae2cd521eedcc6f8065799394 to your computer and use it in GitHub Desktop.
<?php
//Remove JQuery migrate
function remove_jquery_migrate( $scripts ) {
if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
$script = $scripts->registered['jquery'];
if ( $script->deps ) {
// Check whether the script has any dependencies
$script->deps = array_diff( $script->deps, array( 'jquery-migrate' ) );
}
}
}
add_action( 'wp_default_scripts', 'remove_jquery_migrate' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment