Article pages lack visible publication or update dates, reducing content freshness signals for users and search engines.
By Seoxpert Editorial · Published · Updated
Google considers content freshness as part of its Expertise, Experience, Authoritativeness, and Trustworthiness (E-E-A-T) evaluation. Visible publication and update dates help users and search engines assess whether information is current, especially for time-sensitive topics. Without these signals, both users and crawlers may distrust the content's relevance.
Undated articles may be perceived as outdated or less trustworthy, impacting rankings and user engagement.
Automated crawlers scan article pages for visible date text and check for datePublished/dateModified in Article schema markup.
Problem: No visible date, only Article schema
<article>
<h1>How to Improve Your Credit Score</h1>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "How to Improve Your Credit Score",
"datePublished": "2023-03-01",
"dateModified": "2023-03-01"
}
</script>
<p>...</p>
</article>Fix: Add visible dates and update schema
<article>
<h1>How to Improve Your Credit Score</h1>
<div class="article-meta">
<time datetime="2023-03-01">Published: March 1, 2023</time>
<time datetime="2024-05-15">Updated: May 15, 2024</time>
</div>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "How to Improve Your Credit Score",
"datePublished": "2023-03-01",
"dateModified": "2024-05-15"
}
</script>
<p>...</p>
</article>No. Dates must be visible in the page's text, not just in schema markup, to meet best practices.
Dates should be clearly visible, typically near the article title or author byline.
Update dateModified only when you make meaningful content changes, not for minor edits like typos.
Customize your template or use plugins to display publication and update dates on article pages.
Run a scan to see if Article Pages Without Publication Date Signals affects your pages.
Scan my website →