Designer API
Control the Webflow Designer
page.getSearchDescription()
Get the search description of the page.
1page.getSearchDescription(): Promise<string>;
Promise<string>
string
A Promise that resolves to a string value.
1// Get Current Page2const currentPage = await webflow.getCurrentPage() as Page34// Get search engine description and print details5const searchEngineDescription = await currentPage.getSearchDescription()6console.log(searchEngineDescription)
Try this example