Skip to main content
CodeRocket
SEOmediumtechnical

Implement comprehensive author markup

rule · author-info

Structured author information reduces ambiguity for search engines and helps them verify the author's professional standing.

Code Example

HTML
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Jane Smith",
  "jobTitle": "Senior Security Researcher",
  "url": "https://example.com/authors/jane-smith",
  "sameAs": [
    "https://www.linkedin.com/in/janesmith",
    "https://twitter.com/janesmith"
  ],
  "worksFor": {
    "@type": "Organization",
    "name": "SecurityCorp"
  }
}
</script>

Why It Matters

  • Entity Recognition: Helps search engines connect your content to a specific, recognized person in the real world.
  • Knowledge Graph: Can help your authors appear in Google's Knowledge Graph, increasing their perceived authority.
  • Cross-Site Authority: If an author is recognized as an expert on other sites, their authority can "transfer" to your site.
  • Machine Readability: Ensures that search engines don't have to guess who the author is or what their credentials are.

Exceptions

  • Necessary utility or compliance pages can be intentionally brief and should not be judged by the same editorial-depth expectations as ranking-focused content.
  • AI-assisted drafting is not a failure by itself; flag unsupported claims, missing editorial review, or low-originality output instead.
  • When a page has both trust-signal issues and crawl/index problems, make the page eligible to rank first and then improve the content quality signals.

Standards

  • Use these references as the standard for the final search-facing HTML, metadata, and crawl behavior.
  • Check the implementation against Google Search Central: Search Essentials before treating the rule as satisfied.
  • Check the implementation against Google Search Central documentation before treating the rule as satisfied.

Verification

Automated Checks

  • Inspect rendered HTML and HTTP headers to confirm the expected metadata or crawlability signal is present.
  • Test the affected URL with Google Search Console or equivalent tooling where relevant.
  • Re-crawl a representative page set after deployment.

Manual Checks

  • Confirm the change does not create conflicting canonical-url, robots, or structured-data signals.