パンくずリスト

サンプル

デザイン上の考慮事項

実装上の考慮事項

構造化データ

JSON-LDの例

  「ホーム > カテゴリ名 > 記事タイトル」のパンくずの場合

  <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "BreadcrumbList",
      "itemListElement": [{
        "@type": "ListItem",
        "position": 1,
        "name": "ホーム",
        "item": "ホームのURL"
      },{
        "@type": "ListItem",
        "position": 2,
        "name": "カテゴリ名",
        "item": "カテゴリ名のURL"
      },{
        "@type": "ListItem",
        "position": 3,
        "name": "記事タイトル"
      }]
    }
  </script>
      

microdataの例

  「ホーム > カテゴリ名 > 記事タイトル」のパンくずの場合

  <ol itemscope itemtype="https://schema.org/BreadcrumbList">
    <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
      <a itemprop="item" href="ホームURL">
      <span itemprop="name">ホーム</span></a>
      <meta itemprop="position" content="1" />
    </li>
    <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
      <a itemprop="item" href="カテゴリ名URL">
      <span itemprop="name">カテゴリ名</span></a>
      <meta itemprop="position" content="2" />
    </li>
    <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
      <a itemprop="item">
      <span itemprop="name">記事タイトル</span></a>
      <meta itemprop="position" content="3" />
    </li>
  </ol>
      

アクセシビリティ上の考慮事項