Content freshness
Checks for date signals that tell AI agents how current your content is.
¿Por qué importa esto?
AI agents prefer current content. Without datePublished and dateModified, an AI agent can't tell if your content is from yesterday or 5 years ago. Fresh, dated content is cited more often.
¿Cómo se soluciona?
Add datePublished and dateModified to JSON-LD (Article or WebPage schema). Use <time datetime="..."> elements in your HTML. Update dates when you refresh content.
Este check puntúa de 0 a 100. Bajo 50 es un fallo, 50 a 89 un aviso, 90 o más es bueno. Tras cada crawl ve la nota por página en el informe, con una breve explicación.
Preguntas frecuentes
Checks for date signals that tell AI agents how current your content is.
AI agents prefer current content. Without datePublished and dateModified, an AI agent can't tell if your content is from yesterday or 5 years ago. Fresh, dated content is cited more often.
Add datePublished and dateModified to JSON-LD (Article or WebPage schema). Use <time datetime="..."> elements in your HTML. Update dates when you refresh content.
Ejemplo
Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.
<!-- Visible date on the page -->
<p>Last updated: <time datetime="2026-03-14">March 14, 2026</time></p>
<!-- Article JSON-LD with publish and modified dates -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "SEO audit guide 2026",
"datePublished": "2026-01-15",
"dateModified": "2026-03-14"
}
</script>
<!-- Update dateModified every time you revise your content -->