未在电话号码上获取结构化数据
Structured data not being picked up on telephone number
我在网站中有以下代码片段。当我通过 Google 结构化数据测试工具 运行 时,它没有提取 phone 号码。我不确定哪里出错了:
<div class="telephone-number" itemscope itemtype="http://schema.org/Organization">
<p>Call Us: <a itemprop="telephone" href="tel:07749918143">07749 918 143</a></p>
</div>
验证器产生的错误是:
Node is empty. Double check that this is desired and consider removing.
有人能告诉我哪里错了吗?
Schema.org 的 telephone
property 期望 Text 作为值,而不是 URL。
(有一个 feature request 可以改变这个。)
所以你可以使用这样的东西:
<div itemscope itemtype="http://schema.org/Organization">
<p>Call Us: <a href="tel:07749918143"><span itemprop="telephone">07749 918 143</span></a></p>
</div>
我在网站中有以下代码片段。当我通过 Google 结构化数据测试工具 运行 时,它没有提取 phone 号码。我不确定哪里出错了:
<div class="telephone-number" itemscope itemtype="http://schema.org/Organization">
<p>Call Us: <a itemprop="telephone" href="tel:07749918143">07749 918 143</a></p>
</div>
验证器产生的错误是:
Node is empty. Double check that this is desired and consider removing.
有人能告诉我哪里错了吗?
Schema.org 的 telephone
property 期望 Text 作为值,而不是 URL。
(有一个 feature request 可以改变这个。)
所以你可以使用这样的东西:
<div itemscope itemtype="http://schema.org/Organization">
<p>Call Us: <a href="tel:07749918143"><span itemprop="telephone">07749 918 143</span></a></p>
</div>