Alexx The Rocks

雑記。

『「パンくずリスト」関連の問題が 1 件検出されました』とメールが来たとき

2021年9月24日 更新
Categoryweb制作
tag

自サイトを構造化データとしてマークアップしている場合且つ、data-vocabulary.orgを使用しているとサポート終了の通知がGoogle Search Consoleから届きます。

どうやらサポート終了のようですね。

https://www.suzukikenichi.com/blog/data-vocabulary-org-schema-deprecated/

という事で、schema.org タイプへの移行をしていきます。

data-vocabulary.orgからschema.orgへの書き換え方

こちらのサイトが非常に参考になりました。

data-vocabulary.org schema deprecated の警告が出た!パンくずリストの構造化データを修正しましょう | mariweb

3階層以上になる場合は

<ul itemscope itemtype="http://schema.org/BreadcrumbList">
	<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a itemprop="item" href="../"><span itemprop="name">hoge</span></a><meta itemprop="position" content="1" /></li>
	<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a itemprop="item" href="./"><span itemprop="name">hoge hoge</span></a><meta itemprop="position" content="2" /></li>
	<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a itemprop="name" href="#"><span itemprop="name">hoge hoge hoge</span></a><meta itemprop="position" content="3" /></li>
</ul>

のように、2階層目のaタグのitempropも"item"にすれば、エラーにならないようです。