Search.../

title

Gets the page title.

Type:

stringRead Only

Was this helpful?

Get the title of the sitemap entry

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