Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 9, 2021 07:23
Show Gist options
  • Save wpmu-authors/702c31353253e89913a7a42b4b2a59f8 to your computer and use it in GitHub Desktop.
Save wpmu-authors/702c31353253e89913a7a42b4b2a59f8 to your computer and use it in GitHub Desktop.
enqueues-jquery.html
function my_assets() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', get_template_directory_uri() . '/jquery-latest.js' );
}
add_action( 'wp_enqueue_scripts', 'my_assets' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment