<?php
header('Content-Type: application/xml; charset=utf-8');

$base = 'https://thedigitalblogsmith.com';

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

<sitemap>
<loc><?= $base ?>/sitemap-posts.xml</loc>
</sitemap>

<sitemap>
<loc><?= $base ?>/sitemap-categories.xml</loc>
</sitemap>

<sitemap>
<loc><?= $base ?>/sitemap-priority.xml</loc>
</sitemap>

</sitemapindex>