實際上,你可以立即開始使用基於schema.org麪包屑標記。谷歌支持它,它很好。你可以選擇你的格式JSON-LD(首選),RDFa,微數據。另一件好事是,如果你的產品需要它,你可以定義多個麪包屑,通常情況就是這樣。
使用微的支持,你可以這樣做:
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://www.yoursite.com">
<span itemprop="name">Home</span></a>
<meta itemprop="position" content="1" />
</li>
›
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://www.yoursie.com/category/books.html">
<span itemprop="name">Books</span></a>
<meta itemprop="position" content="2" />
</li>
›
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://www.yoursie.com/category/books-literature.html">
<span itemprop="name">Literature & Fiction</span></a>
<meta itemprop="position" content="3" />
</li>
›
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://www.yoursie.com/category/books-classics.html">
<span itemprop="name">Classics</span></a>
<meta itemprop="position" content="4" />
</li>
</ol>
注意位置值的使用,並且它建議使用有序列表(「OL」)。
當你這樣做後,你可以要求谷歌顯示你的網站名稱,而不是在位置#1的'家'。爲了實現這一目標,用這個在您的主頁:
<head itemscope itemtype="http://schema.org/WebSite">
<title itemprop='name'>Your Site Name</title>
<link rel="canonical" href="http://www.yoursite.com" itemprop="url">
什麼,這裏指:https://developers.google.com/structured-data
嗨, 是的,我有。如果我在schema.org上測試示例,它不適用於Google測試工具! – dommm063