为什么这3种Schema最优先部署?
根据对10万个网页的分析(2025年Moz研究),以下3种Schema类型在提升AI引用率和谷歌富结果展示方面效果最为显著:
| Schema类型 | 适用页面 | AI引用提升 | 富结果展示 |
|---|---|---|---|
| Organization | 首页/关于我们 | +15% | 知识面板 |
| Article/BlogPosting | 所有博客和文章页 | +28% | 文章卡片 |
| HowTo | 操作教程类页面 | +41% | 步骤列表 |
Organization Schema:让谷歌认识你的品牌
Organization Schema放在网站首页,告诉谷歌(和AI引擎)你的品牌基础信息。
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "你的品牌名称",
"url": "https://yoursite.com",
"logo": "https://yoursite.com/logo.png",
"description": "简洁的品牌描述,40-100字",
"sameAs": [
"https://twitter.com/yourhandle",
"https://linkedin.com/company/yourcompany"
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer service",
"email": "hello@yoursite.com"
}
}
关键字段说明:
sameAs:链接到你在各平台的官方账号,帮助谷歌确认品牌身份logo:推荐使用112x112px以上的清晰PNG图片
Article Schema:提升文章权威性
Article Schema是每篇博客文章的标配,让谷歌准确识别作者、发布时间等关键元数据。
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "文章标题(与H1一致)",
"author": {
"@type": "Person",
"name": "作者姓名",
"url": "https://yoursite.com/about"
},
"datePublished": "2026-05-06",
"dateModified": "2026-05-06",
"publisher": {
"@type": "Organization",
"name": "网站名称",
"logo": {
"@type": "ImageObject",
"url": "https://yoursite.com/logo.png"
}
},
"image": "https://yoursite.com/article-cover.jpg",
"description": "文章描述,与meta description保持一致"
}
Article vs BlogPosting:
Article:适合新闻报道、深度分析BlogPosting:适合博客文章、教程(两者谷歌都支持,推荐用BlogPosting对应博客内容)
HowTo Schema:操作教程的流量倍增器
HowTo Schema适用于任何有明确步骤的操作教程,是AI引用率提升最显著的Schema类型。
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "如何XXX(操作教程标题)",
"description": "本教程说明如何完成XXX任务",
"totalTime": "PT15M",
"step": [
{
"@type": "HowToStep",
"name": "步骤1标题",
"text": "步骤1的详细说明,描述用户具体应该做什么",
"image": "https://yoursite.com/step1.jpg"
},
{
"@type": "HowToStep",
"name": "步骤2标题",
"text": "步骤2的详细说明"
}
]
}
totalTime格式: ISO 8601时间格式,PT15M = 15分钟,PT1H = 1小时
部署位置和验证
放置位置
所有Schema代码统一放在<head>标签内,或<body>底部的<script>标签中:
<script type="application/ld+json">
{ 你的Schema JSON代码 }
</script>
验证工具
- Google Rich Results Test:
search.google.com/test/rich-results - Schema.org Validator:
validator.schema.org
使用SGAIndex Schema生成器可视化生成以上所有Schema代码,无需手写JSON。
常见问题FAQ
Q:多种Schema可以放在同一个页面吗? A:可以,且推荐这样做。比如文章页可以同时放Article Schema和FAQPage Schema。
Q:Schema代码放在哪里对SEO效果更好? A:head标签内和body底部效果相同,谷歌都能识别。推荐统一放在head内以便管理。