4

ブレッドクラムのホームと現在のページをマークアップすることになっていますか? 私が data-vocabulary を使用しているのは、schema.org がタイトルや URL のマークアップを許可していないためです。手動で追加しない限り、仕切りのないテキスト行のみです。

これが私が今持っているものの例です。ホームページと現在のページの両方をマークアップしたことに注意してください。これは正しいですか、それとも一方または両方をマークアップしないでください。

<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a class="home" itemprop="url" href="/"><span itemprop="title"><img alt="Home" height="30" src="/images/trans.gif" width="16"></span></a></li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/services/"><span itemprop="title">Services</a></span></li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/service/widget/"><span itemprop="title">Widget</a></span></li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/service/widget/features.htm"><span itemprop="title">Features</span></a></li>
4

1 に答える 1

0

</span></a>私は動作するように見える以下をテストしました.いくつかの終了タグが間違っていると思います.

<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a class="home" itemprop="url" href="/"><span itemprop="title"><img alt="Home" height="30" src="/images/trans.gif" width="16"></span></a></li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/services/"><span itemprop="title">Services</span></a></li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/service/widget/"><span itemprop="title">Widget</span></a></li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" href="/service/widget/features.htm"><span itemprop="title">Features</span></a></li>

すでにお読みになっていると思いますが、パンくずリストについて詳しくは、http ://support.google.com/webmasters/bin/answer.py?hl=en&answer= 185417 の「Microdata」リンクに良い例があります。

于 2013-04-19T12:01:45.910 に答える