私はクライアントの Web サイトのブレッドクラムに取り組んでおり、ホームページをコードに含める必要があるかどうかを自問しています。
だから、やったほうがいいですか:
ホームページと現在へのリンク付き
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://someclient.fr/" itemprop="url">
<span itemprop="title">Accueil</span>
</a>
>
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://someclient.fr/annonces" itemprop="url">
<span itemprop="title">Annonces</span>
</a>
>
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://someclient.fr/annonces/category" itemprop="url">
<span itemprop="title">Categorie</span>
</a>
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://someclient.fr/annonces/category/produit" itemprop="url">
<span itemprop="title">Produit</span>
</a>
</div>
ホームページと現在のページへのリンクなし
<a href="http://someclient.fr/" itemprop="url">Accueil</a> >
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://someclient.fr/annonces" itemprop="url">
<span itemprop="title">Annonces</span>
</a>
>
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://someclient.fr/annonces/category" itemprop="url">
<span itemprop="title">Category</span>
</a>
</div>
<a href="http://someclient.fr/annonces/category/produit" itemprop="url">Produit</a>
このコードを Google 構造化データ テスト ツール ( http://www.google.com/webmasters/tools/richsnippets ) で試すと、最初の例ではホームページがレンダリングされないことがわかります。
それで、最善の解決策は何ですか?あなたのサイトはどうですか?
ありがとう !