Reply 240375 to: Load jQuery from the footer

Avatar: Olga Barlow
Olga Barlow
Support staff
June 10, 2020 at 13:42

Hello,

Try the following code to speed up the loading

add_action('wp_enqueue_scripts', function() {
	if ( !is_admin() ) {
		wp_deregister_script( 'jquery' );
		wp_register_script( 'jquery', "//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js", false, '1.12.4' );
		wp_enqueue_script( 'jquery' );
	}
}, 130);

Let me know if it helps.

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.