changeFrequency


changeFrequencystringRead-only

Gets how frequently the page is likely to change.

The value of the changeFrequency property provides general information to search engines and may not correlate exactly to how often they crawl the page.

Valid values:

  • "always"
  • "hourly"
  • "daily"
  • "weekly"
  • "monthly"
  • "yearly"
  • "never"
Get the change frequency of the sitemap entry
JavaScript
Did this help?

lastModified


lastModifiedDateRead-only

Gets when the page data was last modified.

Get the sitemap entry last modified date
JavaScript
Did this help?

pageName


pageNamestringRead-only

Gets the page name.

Get the name of the sitemap entry
JavaScript
import wixSiteFrontend from "wix-site-frontend"; // ... wixSiteFrontend.routerSitemap("routerPrefix").then((routerSitemap) => { const firstEntryPageName = routerSitemap[0].pageName; // 'Page Name' });
Did this help?