标签不适用于企业分支机构,因其语义仅限页面或节元素的作者/所有者联系信息;分支机构属第三方实体,应使用+结构化数据(localbusiness)组合标记。

企业分支机构的联系方式不能用 @#@#@#@#@#@#@#@#@#@0 类型,并指定 <code>"parentOrganization" 关联总部
示例片段:
<section itemscope itemtype="https://www.php.cn/link/ae5e0f7b9471c114f931a344af8483a9"><h3 itemprop="name">深圳研发中心</h3>
<p><strong>地址</strong>: <span itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
<span itemprop="streetAddress">南山区科技园科苑路12号</span>,
<span itemprop="addressLocality">深圳市</span>
<span itemprop="addressRegion">广东省</span>
</span></p>
<p><strong>电话</strong>: <a itemprop="telephone" href="tel:+8675588889999">+86 755 8888 9999</a></p><div class="aritcle_card flexRow artxards">
<div class="artcardd flexRow">
<a class="aritcle_card_img" rel="nofollow" href="/xiazai/skill3458" title="html-ppt-to-pdf"><img
src="https://img.php.cn/upload/skill/000/000/081/178956546773641.jpg" alt="html-ppt-to-pdf" onerror="this.onerror='';this.src='/static/lhimages/moren/morentu.png'" ></a>
<div class="aritcle_card_info flexColumn">
<a rel="nofollow" href="/xiazai/skill3458" title="html-ppt-to-pdf" class="overflowclass">html-ppt-to-pdf</a>
<p class="overflowclass">将使用 `<section class="slide">` 约定的 HTML 幻灯片转换为高保真、矢量文本 PDF(使用 Playwright + Chromium 原生 PDF 功能)。</p>
</div>
<a rel="nofollow" href="/xiazai/skill3458" title="html-ppt-to-pdf" class="aritcle_card_btn flexRow flexcenter"><b></b><span>下载</span>
</a>
</div>
</div>
<p><strong>邮箱</strong>: <a itemprop="email" href="mailto:sz@company.com">sz@company.com</a></p>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "深圳研发中心",
"address": {
"@type": "PostalAddress",
"streetAddress": "南山区科技园科苑路12号",
"addressLocality": "深圳市",
"addressRegion": "广东省"
},
"telephone": "+8675588889999",
"email": "sz@company.com",
"parentOrganization": {
"@type": "Organization",
"name": "XX科技有限公司"
}
}
</script></section>
页脚或列表页中的多分支处理
若需在页脚或“全国网点”页面集中展示多个分支机构,应避免重复使用 <address></address>,也不建议用 <div class="branch"> 这类无语义容器:
<ul>
<li>用 <code><section></section> 为每个分支创建独立语义区块,确保每个 itemscope 各自完整
<main></main> 或 <article></article> 封装,增强上下文归属"@id" 并与 HTML 元素通过 itemref 关联特别注意避坑点
以下做法会削弱结构化效果或引发解析错误:
- 在
<address></address>里写分支机构信息 —— 语义冲突,Google Rich Results 测试工具会报错 - 把多个分支塞进同一个
<address></address>—— 违反“单一责任主体”原则,辅助技术无法区分归属 - 仅用图标(如 ? 电话图标)替代文字标签 —— 读屏器无法朗读,也影响 Schema 解析
- 地址字段缺失
addressLocality或addressRegion—— 多数搜索引擎将拒绝展示为本地商家结果










