0

schema.org のパンくずリストのマイクロ データを使用して、Google に私のパンくずリストを検索結果に表示させようとしています。Google の構造化データ テスト ツールを使用すると、ブレッドクラムが検索結果のサンプルに表示されず、次のメッセージが表示されます。テキストは、ユーザーが入力したクエリによって異なります。」

私が使用している URL にはクエリ文字列が含まれていないため、それがわかりません ( http://www.fastfoodnutrition.org/6_r-taco-bell/8511_i-sausage-flatbread-melt-nutrition-facts. html )

これが私のコードです:

<ol class="breadcrumb"  itemscope itemtype="http://schema.org/breadcrumb">
<li><a itemprop="url" href="/6_r-taco-bell/nutrition-facts.html" title="/6_r-taco-bell/nutrition-facts.html"><span itemprop="title">Taco Bell</span></a></li>
<li><a itemprop="url" href="/6_r-taco-bell/269_c-breakfast-nutrition-facts.html" title="/6_r-taco-bell/269_c-breakfast-nutrition-facts.html"><span itemprop="title">Breakfast</span></a></li>
<li>Sausage Flatbread Melt Nutrition Facts</li>
</ol>
4

1 に答える 1

0

Google はまだそれらを認識していません。代わりにhttp://data-vocabulary.org/Breadcrumbを使用する必要があります。このGoogle の投稿が示唆するように、RichSnippets ツールによって認識されます。したがって、コードは次のようになります。

<ol>
  <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
        <a itemprop="url" href="/6_r-taco-bell/nutrition-facts.html" title="/6_r-taco-bell/nutrition-facts.html">
             <span itemprop="title">Taco Bell</span>
        </a>
  </li>
  <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
        <a itemprop="url" href="/6_r-taco-bell/269_c-breakfast-nutrition-facts.html" title="/6_r-taco-bell/269_c-breakfast-nutrition-facts.html">
             <span itemprop="title">Breakfast</span>
        </a>
  </li>
  <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
        <span itemprop="title">Sausage Flatbread Melt Nutrition Facts</span>
  </li>
</ol>
于 2014-05-16T17:02:39.043 に答える