Seoxpert.io
highBest Practices

Article Pages Missing Author Attribution

Article pages lack visible author byline and Person schema in Article structured data.

By Seoxpert Editorial · Published

Why it matters

Google values transparent author attribution, especially for YMYL and competitive topics. Missing author details can reduce trust and lower E-E-A-T scores, impacting rankings and user confidence.

Impact

Pages without author attribution may rank lower and be perceived as less trustworthy by users and search engines.

How it's detected

Automated crawlers check for visible author bylines and the presence of a Person entity in Article schema markup.

Common causes

  • No visible author byline rendered in article templates
  • Article schema missing or incomplete author property
  • Author information present but not marked up as Person entity
  • Dynamic content failing to inject author details
  • CMS configuration omitting author fields

How to fix it

Add a clear, visible author byline to each article (e.g., 'Written by Jane Smith'). Update your Article JSON-LD schema to include an 'author' property with a Person entity, specifying the author's name and linking to their bio page. Ensure the bio page includes credentials to support expertise.

Code examples

Problem: No visible author byline or Person schema

<article>
  <h1>How to Improve Your Credit Score</h1>
  <p>...</p>
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "Article",
    "headline": "How to Improve Your Credit Score"
    // No author property
  }
  </script>
</article>

Fix: Add visible byline and Person schema

<article>
  <h1>How to Improve Your Credit Score</h1>
  <p class="byline">Written by Jane Smith</p>
  <p>...</p>
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "Article",
    "headline": "How to Improve Your Credit Score",
    "author": {
      "@type": "Person",
      "name": "Jane Smith",
      "url": "/about/jane"
    }
  }
  </script>
</article>

FAQ

Why does Google care about author attribution on articles?

Google uses author attribution to assess content trustworthiness and expertise, which can influence rankings, especially for sensitive topics.

Is a visible byline required, or is schema markup enough?

Both are recommended. A visible byline helps users, while schema markup helps search engines verify authorship.

What should I include in the Person schema for the author?

At minimum, include the author's name and a link to their bio page with credentials or relevant background.

Does this apply to all article pages or only certain topics?

It's important for all articles, but especially critical for YMYL (Your Money or Your Life) and competitive niches.

Found this issue on your site?

Run a scan to see if Article Pages Missing Author Attribution affects your pages.

Scan my website →