Ga naar de inhoud // functions.php of Code Snippets plugin
add_action( 'wp_enqueue_scripts', function() {
if ( ! is_admin() ) {
wp_deregister_script('jquery');
wp_register_script('jquery', includes_url('/js/jquery/jquery.min.js'), [], null, true); // true = in footer
wp_enqueue_script('jquery');
}
}, 20 );