Early Access
rating
Learn how to use the rating meta tag to improve your site.
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.
Parameters
<meta name="rating" content="general" />
<meta name="rating" content="mature" />
<meta name="rating" content="restricted" />
<meta name="rating" content="14 years" />
Code Examples
<meta name="rating" content="general" />
<meta name="rating" content="mature" />
<meta name="rating" content="14 years" />
<meta name="rating" content="kids" />
Recommendations
- Be Precise and StandardStick to standard content maturity ratings to ensure clear communication to content filtration systems.
- Consider Content StrategyAlign the use of the rating meta tag with your overall content and audience strategy, especially when your content targets specific age groups.
Related Documentation
Related Meta Tags
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">
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">
Community