Search.../

changeFrequency

Gets how frequently the page is likely to change.

Description

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"

Type:

stringRead Only

Was this helpful?

Get the change frequency of the sitemap entry

Copy Code
1import wixSiteFrontend from 'wix-site-frontend';
2
3// ...
4
5wixSiteFrontend.routerSitemap('routerPrefix')
6 .then((routerSitemap) => {
7 const firstEntryChangeFrequency = routerSitemap[0].changeFrequency; // 'weekly'
8
9 });