我正在尝试帮助Google为我的网站生成适当的面包屑详细信息。我目前正在使用它作为面包屑:
<div id="breadcrumb">
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.radonsystems.net" class="crumb" rel="up" itemprop="url">
<span itemprop="title">Home</span>
</a>
<span class="arrow">
<span>»</span>
</span>
</span>
<span class="crust" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.radonsystems.net/business/profile.2" class="crumb" rel="up" itemprop="url">
<span itemprop="title">Business Profile</span>
</a>
</span>
</div>
然而,这根本没有帮助Google,即使测试工具也没有生成breadrumb链接,尽管它确实看到微数据并正确地将其识别为面包屑微数据。
有什么想法吗?
答案 0 :(得分:6)
我不会在data-vocabulary.org上使用微数据模式,而是在http://schema.org使用较新的模式,这是谷歌,雅虎和微软的联合项目。它具有更广泛的模式,可以更好地表达您的数据。
特别是,webpage
模式是您想要定义的痕迹导航微数据。
http://www.schema.org/WebPage
答案 1 :(得分:0)
如果要列出您的页面,您需要创建一个包含足够实质内容的版本。
答案 2 :(得分:0)
我所做的是添加一个新列,其中数字可以输入为格式:1,3,4。然后,我从数据库中检索它,将其展开为一个数组,对于每个数字,我将检索有关该链接ID的信息:url,text,然后输出。