sitemapindex.php 519 B

1234567891011121314
  1. <?= '<'.'?'.'xml version="1.0" encoding="UTF-8"?>'."\n"; ?>
  2. <?php if (null != $style) {
  3. echo '<'.'?'.'xml-stylesheet href="'.$style.'" type="text/xsl"?>'."\n";
  4. } ?>
  5. <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  6. <?php foreach ($sitemaps as $sitemap) : ?>
  7. <sitemap>
  8. <loc><?= $sitemap['loc'] ?></loc>
  9. <?php if ($sitemap['lastmod'] !== null) : ?>
  10. <lastmod><?= date('Y-m-d\TH:i:sP', strtotime($sitemap['lastmod'])) ?></lastmod>
  11. <?php endif; ?>
  12. </sitemap>
  13. <?php endforeach; ?>
  14. </sitemapindex>