<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php
if (file_exists('wp-load.php')) {
    require 'wp-load.php';
    $events = get_posts([
        'post_type' => 'tribe_events',
        'post_status' => 'publish',
        'numberposts' => -1,
        'orderby' => 'modified',
        'order' => 'DESC'
    ]);
    
    foreach ($events as $event) {
        echo '<url>' . "\n";
        echo '  <loc>' . get_permalink($event->ID) . '</loc>' . "\n";
        echo '  <lastmod>' . mysql2date('Y-m-d', $event->post_modified) . '</lastmod>' . "\n";
        echo '  <changefreq>daily</changefreq>' . "\n";
        echo '  <priority>0.8</priority>' . "\n";
        echo '</url>' . "\n";
    }
}
?>
</urlset>
