Skip to content

Instantly share code, notes, and snippets.

@davidvandenbor
Last active December 29, 2015 00:01
Show Gist options
  • Select an option

  • Save davidvandenbor/f020b115c47bea24c3ce to your computer and use it in GitHub Desktop.

Select an option

Save davidvandenbor/f020b115c47bea24c3ce to your computer and use it in GitHub Desktop.
Remove jQuery migrate script from WordPress head
<?php
/* -------------------------------------------------------------------------------//
* @group remove jquery migrate from header
*/
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' );
}
}
// @end remove jquery migrate from header
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment