自分のサイトにブレッドクラムを実装したいのですが、自分のページにそのための可視タグを作成したくありません。メタタグを使用することを考えましたが、プロパティhref
がないため、プロパティを含めることはできませんitemprop="url"
。以下は私が使用しているコードです:
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<meta href="http://www.example.com/dresses" itemprop="url">
<meta itemprop="title" content="Dresses">
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<meta href="http://www.example.com/dresses/real" itemprop="url">
<meta itemprop="title" content="Real Dresses">
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<meta href="http://www.example.com/clothes/dresses/real/green" itemprop="url">
<meta itemprop="title" content="Real Green Dresses">
</div>
これを達成するための回避策はありますか?