Early Access
googlebot-news
Provides specific instructions to Google News crawler on how to index content for Google News. Enables granular control over the indexing behavior of your website’s news articles by Google.
Parameters
<meta name="googlebot-news" content="index" />
<meta name="googlebot-news" content="noindex" />
<meta name="googlebot-news" content="follow" />
<meta name="googlebot-news" content="nofollow" />
<meta name="googlebot-news" content="noarchive" />
<meta name="googlebot-news" content="nosnippet" />
<meta name="googlebot-news" content="max-snippet:-1" />
<meta name="googlebot-news" content="max-image-preview:large" />
Code Examples
<meta name="googlebot-news" content="index, follow" />
<meta name="googlebot-news" content="noindex, nofollow" />
<meta name="googlebot-news" content="index, nofollow" />
<meta name="googlebot-news" content="noindex, follow" />
Recommendations
- Optimize for Google News VisibilityUse "index, follow" to ensure your content is discoverable and ranks within Google News.
- Control Snippet and Image PreviewsUtilize "nosnippet" or "max-snippet:-1" and "max-image-preview:large" to manage how your content appears in news results, balancing click-through with content exposure.
- Avoid Common MisconfigurationsEnsure not to inadvertently use "noindex" on important news articles you wish to appear in Google News.
Related Documentation
Related Meta Tags
author
Specifies the name of the author of the document or webpage. This is used by search engines to understand authorship information, which can influence search rankings and visibility.
<meta name="author" content="Jane Doe">
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">
description
Provides a brief and concise summary of a web page’s content. This summary is often used by search engines to display snippet previews in search results, influencing click-through rates.
<meta name="description" content="Learn how to bake delicious, moist cupcakes with our easy-to-follow guide. Featuring tips and tricks for beginners.">
This meta tag is utilized to specify how Google should interact with your site. Primarily, it's used to enable or disable Google's site translation feature on a per-page basis.
<meta name="google" content="notranslate">
Used for verifying ownership of a website within Google Search Console, a crucial step for accessing detailed reporting and configuring how Google interacts with your site.
<meta name="google-site-verification" content="your_verification_code">
Community