Aşağıdaki kodları temanızın functions.php'sine ekleyerek wordpress'in varsayılan jquery'sini cdn'deki jquery ile değiştirebilirsiniz:

          add_action('init', 'use_jquery_from_google');

            function use_jquery_from_google () {
                if (is_admin()) {
                    return;
                }

                global $wp_scripts;
                if (isset($wp_scripts->registered['jquery']->ver)) {
                    $ver = $wp_scripts->registered['jquery']->ver;
                            $ver = str_replace("-wp", "", $ver);
                } else {
                    $ver = '1.12.4';
                }

                wp_deregister_script('jquery');
                wp_register_script('jquery', "//ajax.googleapis.com/ajax/libs/jquery/$ver/jquery.min.js", false, $ver);
            }