Designer API
Control the Webflow Designer
page.excludeFromSearch(shouldExclude)
Exclude the page from internal site search.
1page.excludeFromSearch(shouldExclude: boolean): Promise<null>;
boolean
Promise<null>
null
A Promise that resolves to null.
1// Get Current Page2const currentPage = await webflow.getCurrentPage()34// Exclude from search engine indexing5await currentPage.excludeFromSearch(true)
Try this example