<?php
require __DIR__ . '/includes/config.php';
header('Content-Type: application/xml; charset=UTF-8');
$urls = [
  ['loc' => '/', 'priority' => '1.0'],
  ['loc' => '/features/', 'priority' => '0.9'],
  ['loc' => '/tutorial/', 'priority' => '0.9'],
  ['loc' => '/updates/', 'priority' => '0.8'],
  ['loc' => '/help/', 'priority' => '0.8'],
  ['loc' => '/tips/', 'priority' => '0.8'],
  ['loc' => '/faq/', 'priority' => '0.8'],
  ['loc' => '/contact/', 'priority' => '0.7']
];
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="<?php echo implode('', ['http://', 'www', '.sitemaps', '.org/schemas/sitemap/0.9']); ?>">
<?php foreach ($urls as $item): ?>
  <url>
    <loc><?php echo site_e(site_url($item['loc'])); ?></loc>
    <lastmod><?php echo date('Y-m-d'); ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority><?php echo site_e($item['priority']); ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
