function load_latest_jquery_ui() {
    // jQuery UI Stylesheet von aktuellem CDN
    wp_enqueue_style('jquery-ui-css', 'https://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css');
    
    // jQuery UI Script von aktuellem CDN
    wp_enqueue_script('jquery-ui-js', 'https://code.jquery.com/ui/1.13.2/jquery-ui.min.js', array('jquery'), '1.13.2', true);
}
add_action('wp_enqueue_scripts', 'load_latest_jquery_ui');
