web-dev-qa-db-ja.com

SERPのドメイン名の後に最初のリンクとして表示されるホームページ

Googleがパンくずリストを次のように表示していることに気付きました

ドメイン名>ホーム>ページ

内部ページに。私の頭の中では:

ドメイン名>ページ

「ホーム」は表示されません。以下のスクリーンプリントを参照してください。

これはページで使用されているコードです:

<ol id="topBreadCrumb" itemtype="http://schema.org/BreadcrumbList" itemscope="">
  <li itemtype="http://schema.org/ListItem" itemscope="" itemprop="itemListElement"><a href="/" itemtype="http://schema.org/Thing" itemscope="" itemprop="item"><span itemprop="name">Home</span></a><meta content="1" itemprop="position"> › </li><li itemtype="http://schema.org/ListItem" itemscope="" itemprop="itemListElement"><a href="/shop-front-refurbishment/" itemtype="http://schema.org/Thing" itemscope="" itemprop="item"><span itemprop="name">Shop Front Spray Painting</span></a><meta content="2" itemprop="position"></li>
</ol>

誰かが私が間違っていることについて提案をすることはできますか?

3
Marcus

Googleは、コードに従ってすべてを正しく表示します。 Homeポイントは<a href="/" itemtype="http://schema.org/Thing" itemscope="" itemprop="item"><span itemprop="name">Home</span></a>によって生成されます

パンくずリストにホームポイントが必要ない場合、最初のポイントはホームの次のポイントになります。

https://developers.google.com/search/docs/data-types/breadcrumb の下にあるGoogleの例を利用する

3
Evgeniy