Skip to content

Instantly share code, notes, and snippets.

@brunopulis
Created February 3, 2019 02:40
Show Gist options
  • Save brunopulis/e3f39e42528ce842df7663ee135f5f2b to your computer and use it in GitHub Desktop.
Save brunopulis/e3f39e42528ce842df7663ee135f5f2b to your computer and use it in GitHub Desktop.
Remove jquery migrate from wordpress
// Dequeue jQuery Migrate script in WordPress.
function remove_jquery_migrate(&$scripts) {
if(!is_admin()) {
$scripts->remove( 'jquery');
$scripts->add( 'jquery', false, array( 'jquery-core' ), '1.12.4' );
}
}
add_filter('wp_default_scripts', 'remove_jquery_migrate');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment