title


titlestringRead-only

Gets the page title.

Get the title of the sitemap entry
JavaScript
import wixSiteFrontend from "wix-site-frontend"; // ... wixSiteFrontend.routerSitemap("routerPrefix").then((routerSitemap) => { const firstEntryTitle = routerSitemap[0].title; // 'Cozy Condo' });
Did this help?