How to include taxonomy pages in sitemap.xml?

I’m just wondering how to include taxonomy pages in sitemap.xml. Is there any way of using .Data.Terms in its layout?

I found .Site.Taxonomies.tags would work;

{{ range $index, $element := .Site.Taxonomies.tags }}
<url>
    <loc>http://www.example.com/tags/{{ $index | urlize }}/</loc>
    <changefreq>monthly</changefreq>
    <priority>0.3</priority>
</url>
{{ end }}
2 Likes