Early Access
creator
Specifies the author of the webpage. Mainly used for document metadata rather than direct SEO benefit, it helps in identifying the creator of the webpage content.
Code Examples
<meta name="creator" content="Jane Doe" />
<meta name="creator" content="Jane Doe, John Smith" />
<meta name="creator" content="Admin" />
<meta name="creator" content="" />
Recommendations
- Credit Multiple AuthorsWhen a web page has multiple authors, list them separated by a comma or use multiple creator tags to individually list them for proper credit.
- Include Role or QualificationWhere appropriate, include the role or qualification of the creator next to their name to enhance the specificity, such as "John Doe, Lead Developer".
Related Meta Tags
rating
Specifies the intended audience for a page or the level of content maturity. Commonly used to describe the maturity level of content on a website, such as 'general', 'mature', 'restricted', or custom descriptions.
<meta name="rating" content="general">
charset
Defines the character encoding standard for the HTML document. Character encoding is essential for rendering text correctly in browsers.
<meta charset="charset" content="UTF-8">
creator
Specifies the author of the webpage. Mainly used for document metadata rather than direct SEO benefit, it helps in identifying the creator of the webpage content.
<meta name="creator" content="Jane Doe">
generator
Indicates the software or tool used to create the content of the webpage. It is primarily used for informational purposes and does not affect SEO, browser behavior, or accessibility directly.
<meta name="generator" content="WordPress 5.4">
Community