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
Did this help?

priority


prioritynumberRead-only

Gets the priority of this URL relative to other URLs on your site.

The value of the priority property lets search engines know which pages you deem most important. Its value does not affect how your pages are compared to pages on other sites.

Valid values range from 0.0 to 1.0.

The default priority of a page is 0.5.

Get the relative priority of the sitemap entry
JavaScript
Did this help?

title


titlestringRead-only

Gets the page title.

Get the title of the sitemap entry
JavaScript
Did this help?

url


urlstringRead-only

Gets the relative url of the page.

Get the sitemap entry relative URL
JavaScript
import wixSiteFrontend from "wix-site-frontend"; // ... wixSiteFrontend.routerSitemap("routerPrefix").then((routerSitemap) => { const firstEntryRelativeUrl = routerSitemap[0].url; // '/apartments/cozy-condo' });
Did this help?