Search.../

lastModified

Gets when the page data was last modified.

Type:

DateRead Only

Was this helpful?

Get the sitemap entry last modified date

Copy Code
1import wixSiteFrontend from 'wix-site-frontend';
2
3// ...
4
5wixSiteFrontend.routerSitemap('routerPrefix')
6 .then((routerSitemap) => {
7 const firstEntryLastModified = routerSitemap[0].lastModified; // 'Fri Oct 13 2022 11:23:56 GMT+0300'
8
9 });