Search...
title
Gets the page's title.
Description
The title
is an important factor that lets search engines determine the topic of a page.
Note: You should always invoke the
wixSeo.title
getter outside of theonReady()
event handler to ensure receiving the proper response.
Type:
stringRead Only
Related Content:
Was this helpful?
Get the SEO title
Copy Code
1import wixSeo from 'wix-seo';23// ...45let title = wixSeo.title; // "Page Title"