Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Created December 8, 2021 12:00
Show Gist options
  • Save Asikur22/75b53237a3611d7a4232f4cbe598f442 to your computer and use it in GitHub Desktop.
Save Asikur22/75b53237a3611d7a4232f4cbe598f442 to your computer and use it in GitHub Desktop.
Register jQuery Script
/*
* Register jQuery Script
*/
function wp98_theme_jquery_scripts() {
wp_deregister_script( 'jquery' );
wp_enqueue_script( 'jquery', '//code.jquery.com/jquery-1.11.0.min.js', false, '1.11', true );
wp_deregister_script( 'jquery-migrate' );
wp_enqueue_script( 'jquery-migrate', '//code.jquery.com/jquery-migrate-1.2.1.min.js', array( 'jquery' ), '1.2.1', true );
}
add_action( 'wp_enqueue_scripts', 'wp98_theme_jquery_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment