Seoxpert.io
mediumBest Practices

Article Pages Without Publication Date Signals

Article pages lack visible publication or update dates, reducing content freshness signals for users and search engines.

By Seoxpert Editorial · Published · Updated

Why it matters

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.

Impact

Undated articles may be perceived as outdated or less trustworthy, impacting rankings and user engagement.

How it's detected

Automated crawlers scan article pages for visible date text and check for datePublished/dateModified in Article schema markup.

Common causes

  • Templates omit visible date display for articles.
  • Developers rely solely on schema markup without visible dates.
  • CMS settings hide or do not output publication/update dates.
  • Manual removal of date elements for design reasons.

How to fix it

Add clearly visible publication and update dates to all article pages, ideally near the article title or byline. Ensure your Article JSON-LD includes both datePublished and dateModified properties. Update dateModified in the markup and on the page whenever the content changes. This improves both user trust and SEO signals.

Code examples

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>

FAQ

Is schema markup alone enough for article dates?

No. Dates must be visible in the page's text, not just in schema markup, to meet best practices.

Where should I display publication and update dates?

Dates should be clearly visible, typically near the article title or author byline.

Do I need to update dateModified every time I make a small change?

Update dateModified only when you make meaningful content changes, not for minor edits like typos.

What if my CMS doesn't support visible dates?

Customize your template or use plugins to display publication and update dates on article pages.

Found this issue on your site?

Run a scan to see if Article Pages Without Publication Date Signals affects your pages.

Scan my website →