wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://code.jquery.com/jquery.min.js', null, true );
wp_enqueue_script( 'jquery' );
wp_deregister_script('jquery');
wp_enqueue_script('jquery', 'https://code.jquery.com/jquery.min.js', [], null, true);
add_action( 'wp_default_scripts', 'include_jquery_into_footer' );
function include_jquery_into_footer( $wp_scripts ) {
if( is_admin() ) {
return;
}
$wp_scripts->add_data( 'jquery', 'group', 1 );
$wp_scripts->add_data( 'jquery-core', 'group', 1 );
$wp_scripts->add_data( 'jquery-migrate', 'group', 1 );