Skip to content

Instantly share code, notes, and snippets.

@jacks0n
Created January 14, 2015 03:08
Show Gist options
  • Save jacks0n/e58af756a5eaf2f28025 to your computer and use it in GitHub Desktop.
Save jacks0n/e58af756a5eaf2f28025 to your computer and use it in GitHub Desktop.
Remove/un-enqueue the jQuery migrate file, which is often not required.
<?php
/**
* Removes the jquery-migrate file, often not-required.
*/
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'), '');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment