Designer API
Control the Webflow Designer
page.getTitle()
Get the title of the page.
1page.getTitle(): Promise<string>
Promise<string>
string
A promise that resolves to the title of the page.
1// Get Current Page2const currentPage = await webflow.getCurrentPage() as Page34// Get page title5const pageTitle = await currentPage.getTitle()6console.log(pageTitle)
Try this example