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.
- E-E-A-T boost: Person Schema proves Experience, Expertise, Authoritativeness, Trust
- Knowledge Panel: Google shows author box on right side of search results
- AdSense approval: Clear author info helps pass "valuable inventory" check
- 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.
- Blogger → Pages → New Page → Title: "About [Your Name]"
- URL:
/p/about.htmlor/p/about-me.html - Write 300+ word bio with: real name, photo, credentials, experience, social links
- 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>
- Replace all placeholders: Name, photo URL, social links, job title, description
- sameAs array: Add 3-5 social profiles. Must be real accounts
- 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.
- Theme → Edit HTML → Ctrl+F → Search
<data:post.author> - Replace with this code to link author name:
<a href="/p/about.html" rel="author"><data:post.author/></a>
- 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
| Test | Tool | Pass Result |
| Schema validation | validator.schema.org → Paste About page URL | 0 errors, Person type detected |
| Rich Results Test | search.google.com/test/rich-results | Shows "Person" and "BlogPosting" valid |
| Knowledge Panel | Google search "Your Name Blogger" | Panel appears in 2-8 weeks |
| E-E-A-T check | Search Console → Enhancements | No author errors |
- Boost Knowledge Panel chances: Get Wikipedia page, Wikidata entry, or featured in major sites
- 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.
0 Comments