Skip to content

Instantly share code, notes, and snippets.

@cp-sumi-k
Last active March 22, 2022 11:38
Show Gist options
  • Save cp-sumi-k/ecfba4f819b7f63854d5e80dbcba588f to your computer and use it in GitHub Desktop.
Save cp-sumi-k/ecfba4f819b7f63854d5e80dbcba588f to your computer and use it in GitHub Desktop.
// Add changefreq and lastmod to all urls
year, month, _ := time.Now().Date() //get current month and year
lastmod := time.Date(year, month, 1, 0, 0, 0, 0, time.UTC).Format("2006-01-02T00:00:00.000Z")
for i := range sitemapUrls {
sitemapUrls[i].ChangeFreq = "monthly"
sitemapUrls[i].LastMod = lastmod
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment