Skip to content

Instantly share code, notes, and snippets.

@ewistrand
Created November 19, 2015 13:41
Show Gist options
  • Save ewistrand/00dd05a2d72c4fb934e7 to your computer and use it in GitHub Desktop.
Save ewistrand/00dd05a2d72c4fb934e7 to your computer and use it in GitHub Desktop.
WP Remove jQuery Migrate
<?php
// Remove jQuery Migrate From End
add_filter( 'wp_default_scripts', 'remove_jquery_migrate' );
function remove_jquery_migrate( &$scripts)
{
if(!is_admin())
{
$scripts->remove( 'jquery');
$scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment