Skip to content

Instantly share code, notes, and snippets.

@nusserstudios
Created May 15, 2018 21:33
Show Gist options
  • Save nusserstudios/a752ee383200a03261d0cf5ffa699b7c to your computer and use it in GitHub Desktop.
Save nusserstudios/a752ee383200a03261d0cf5ffa699b7c to your computer and use it in GitHub Desktop.
Deque Jquery Migrate
function dequeue_jquery_migrate( &$scripts){
if(!is_admin()){
$scripts->remove( 'jquery');
$scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' );
}
}
add_filter( ‘wp_default_scripts’, ‘dequeue_jquery_migrate’ );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment