Skip to content

Instantly share code, notes, and snippets.

@danielstrelec
Created May 22, 2018 06:50
Show Gist options
  • Select an option

  • Save danielstrelec/539636fa56f56c3f4ed78aa2f6b158ac to your computer and use it in GitHub Desktop.

Select an option

Save danielstrelec/539636fa56f56c3f4ed78aa2f6b158ac to your computer and use it in GitHub Desktop.
// odstranění jquery migrate
function isa_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', 'isa_remove_jquery_migrate' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment