WordPress / WooCommerce 独立站 AI 知识图谱模板,采用 DIV + JSON-LD 双结构,覆盖前面讲的 8 层实体建模,可以直接放到页面里使用,AI 推荐系统即可识别。
下面是示例模板(电动牙刷 B2B 产品为例,可直接改成你的产品):
<!– 实体信息 –>
<h1 data-entity=“Product”>Powsmart Adult Electric Toothbrush</h1>
<p data-entity=“Brand” data-attr=“name”>Brand: Powsmart</p>
<p data-entity=“Organization” data-attr=“location”>Location: Shenzhen, China</p>
<!– 属性层 –>
<ul>
<li data-attr=“material”>Material: BPA-Free Plastic</li>
<li data-attr=“certification”>Certification: CE, FDA, ADA</li>
<li data-attr=“usage”>Usage: Oral Care, Daily Cleaning</li>
<li data-attr=“price”>Price: $25</li>
<li data-attr=“sku”>SKU: PS-EB001</li>
</ul>
<!– 问答/FAQ 层 –>
<div class=“faq” data-entity=“FAQ”>
<h3>FAQ</h3>
<div data-entity=“Question” data-attr=“q”>Which toothbrush is suitable for wholesale buyers?</div>
<div data-entity=“Answer” data-attr=“a”>Powsmart Adult Electric Toothbrush, CE/FDA certified, supports bulk orders.</div>
</div>
<!– 产品对比层 –>
<table data-entity=“ProductComparison”>
<tr>
<th>Feature</th>
<th>Powsmart</th>
<th>Generic</th>
</tr>
<tr>
<td>ADA Certified</td>
<td>Yes</td>
<td>No</td>
</tr>
<tr>
<td>Price</td>
<td>$25</td>
<td>$18</td>
</tr>
<tr>
<td>Warranty</td>
<td>2 Years</td>
<td>1 Year</td>
</tr>
</table>
</div>
<!– ================== JSON-LD 知识图谱 ================== –>
<script type=“application/ld+json”>
{
“@context”: “https://schema.org”,
“@graph”: [
{
“@type”: “Product”,
“@id”: “https://yourdomain.com/product/powsmart-electric-toothbrush”,
“name”: “Powsmart Adult Electric Toothbrush”,
“brand”: {
“@type”: “Brand”,
“name”: “Powsmart”,
“logo”: “https://yourdomain.com/images/logo.png”
},
“manufacturer”: {
“@type”: “Organization”,
“name”: “Powsmart”,
“location”: “Shenzhen, China”,
“sameAs”: “https://www.powsmart.com”
},
“material”: “BPA-Free Plastic”,
“sku”: “PS-EB001”,
“audience”: “B2B Wholesale Buyers”,
“category”: “Electric Toothbrush”,
“offers”: {
“@type”: “Offer”,
“priceCurrency”: “USD”,
“price”: “25”,
“availability”: “https://schema.org/InStock”
},
“isAccessoryOrSparePartFor”: [],
“additionalProperty”: [
{“@type”: “PropertyValue”,“name”:“Certification”,“value”:“CE, FDA, ADA”},
{“@type”: “PropertyValue”,“name”:“Usage”,“value”:“Oral Care, Daily Cleaning”}
]
},
{
“@type”: “FAQPage”,
“mainEntity”: [
{
“@type”: “Question”,
“name”: “Which toothbrush is suitable for wholesale buyers?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Powsmart Adult Electric Toothbrush, CE/FDA certified, supports bulk orders.”
}
}
]
},
{
“@type”: “ProductComparison”,
“name”: “Electric Toothbrush Comparison”,
“comparesTo”: [
{
“@type”: “Product”,
“name”: “Generic Electric Toothbrush”,
“additionalProperty”: [
{“@type”: “PropertyValue”,“name”:“ADA Certified”,“value”:“No”},
{“@type”: “PropertyValue”,“name”:“Price”,“value”:“18”},
{“@type”: “PropertyValue”,“name”:“Warranty”,“value”:“1 Year”}
]
}
],
“additionalProperty”: [
{“@type”: “PropertyValue”,“name”:“ADA Certified”,“value”:“Yes”},
{“@type”: “PropertyValue”,“name”:“Price”,“value”:“25”},
{“@type”: “PropertyValue”,“name”:“Warranty”,“value”:“2 Years”}
]
}
]
}
</script>
8层实体建模全覆盖
实体层 / 属性层 / 关系层 / 上下文层 / 权威层 / FAQ层 / 对比层 / 动态层
双结构:DIV 可视化 + JSON-LD 机器可读
可直接上站触发 AI 推荐系统
动态可更新:SKU、价格、评分、库存可通过 JS 或后端 API 更新
高度可扩展:适合批发/零售/内容网站