Skip to content

Instantly share code, notes, and snippets.

@pavelrich
Created May 24, 2019 16:47
Show Gist options
  • Save pavelrich/abf39fe522e659f27ace2cc541e1b5d1 to your computer and use it in GitHub Desktop.
Save pavelrich/abf39fe522e659f27ace2cc541e1b5d1 to your computer and use it in GitHub Desktop.
WordPress — Replace Current Version of the jQuery
<?php
// Replace jQuery Version in a WordPress
if ( ! function_exists( 'forqy_jquery_replace' ) ) {
function forqy_jquery_replace() {
if ( ! is_admin() ) {
// remove current version of the jquery
wp_deregister_script( 'jquery' );
// register new version of the jquery
wp_enqueue_script( 'jquery', 'https://code.jquery.com/jquery-3.4.1.min.js', false, '3.4.1' );
}
}
add_action( 'init', 'forqy_jquery_replace' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment