add

How to Add Author Schema in Blogger

 No Author Schema = Google thinks your blog is AI-written. Add Person Schema = Knowledge Panel + higher rankings.

In this tutorial, you'll add Author Schema to your Blogger About page. Follow along and you'll boost E-E-A-T signals for Google in 2025.

Step 1: Why Author Schema is Critical for Blogger 2025

Google's Helpful Content Update ranks real authors over anonymous sites.

  1. E-E-A-T boost: Person Schema proves Experience, Expertise, Authoritativeness, Trust
  2. Knowledge Panel: Google shows author box on right side of search results
  3. AdSense approval: Clear author info helps pass "valuable inventory" check
  4. Featured in SGE: Google's AI cites authors with Schema in AI answers

Image: Google Knowledge Panel showing author with photo, bio, social links

Step 2: Create Author About Page in Blogger

Schema goes on dedicated About page, not homepage.

  1. Blogger → Pages → New Page → Title: "About [Your Name]"
  2. URL: /p/about.html or /p/about-me.html
  3. Write 300+ word bio with: real name, photo, credentials, experience, social links
  4. Important: Use real photo, not logo. Google rejects faceless authors

Step 3: Add Person Schema JSON-LD to About Page

Switch About page to "HTML" view → Paste at very top before your content:

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Your Full Name",
  "alternateName": "Your Blog Name",
  "url": "https://yourblog.blogspot.com/p/about.html",
  "image": "https://blogger.googleusercontent.com/img/YOUR-PHOTO-URL",
  "sameAs": [
    "https://twitter.com/YourHandle",
    "https://linkedin.com/in/YourProfile",
    "https://facebook.com/YourPage",
    "https://instagram.com/YourHandle"
  ],
  "jobTitle": "Blogger & SEO Expert",
  "worksFor": {
    "@type": "Organization",
    "name": "Your Blog Name"
  },
  "description": "Your Name is a blogger with 5+ years experience in SEO and content marketing. Featured in Forbes, SEMrush. Helps beginners start profitable blogs.",
  "knowsAbout": ["SEO", "Blogger", "Content Marketing", "AdSense"],
  "alumniOf": {
    "@type": "CollegeOrUniversity",
    "name": "Your University Name"
  }
}
</script>
  1. Replace all placeholders: Name, photo URL, social links, job title, description
  2. sameAs array: Add 3-5 social profiles. Must be real accounts
  3. knowsAbout: List 3-5 topics you write about. Match your blog niche

Step 4: Link Author Name to About Page in Posts

Connect every post to Author Schema with author link.

  1. Theme → Edit HTML → Ctrl+F → Search <data:post.author>
  2. Replace with this code to link author name:
<a href="/p/about.html" rel="author"><data:post.author/></a>
  1. Also add Schema to BlogPosting in theme. Search </head> → Add above it:
<b:if cond='data:blog.pageType == "item"'>
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BlogPosting",
  "headline": "<data:post.title/>",
  "author": {
    "@type": "Person",
    "name": "Your Full Name",
    "url": "https://yourblog.blogspot.com/p/about.html"
  },
  "publisher": {
    "@type": "Organization",
    "name": "Your Blog Name",
    "logo": {
      "@type": "ImageObject",
      "url": "https://yourblog.blogspot.com/logo.png"
    }
  }
}
</script>
</b:if>

Step 5: Test Author Schema + Get Knowledge Panel

TestToolPass Result
Schema validationvalidator.schema.org → Paste About page URL0 errors, Person type detected
Rich Results Testsearch.google.com/test/rich-resultsShows "Person" and "BlogPosting" valid
Knowledge PanelGoogle search "Your Name Blogger"Panel appears in 2-8 weeks
E-E-A-T checkSearch Console → EnhancementsNo author errors
  1. Boost Knowledge Panel chances: Get Wikipedia page, Wikidata entry, or featured in major sites
  2. Update yearly: Add new achievements, certifications to description

Bad practice to avoid: Fake name like "Admin" or stock photo. Google demotes + AdSense rejects. Use real identity.

Important: One Person Schema per site. For multi-author blogs, add Person Schema per author page. Link each post to correct author. Author Schema alone won't rank you - combine with quality content from Post #41-51 series. Knowledge Panels need 6+ months of consistent publishing.

Post a Comment

0 Comments