サイトにリッチ スニペットを追加しようとしていますが、ratingValue の値が画像としてのみ表示されるため、AggregateRating セクションで少し苦労しています。
私のマークアップは次のようになります。
<tr itemprop="reviews" itemscope itemtype="http://schema.org/Review">
<th>Rating:</th>
<td itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<img itemprop="ratingValue" class="rating" src="/content/images/ratings/4.5.png" alt="4.5" title="Rating: 4.5 / 5" />
</td>
</tr>
私が知る限り、これは有効な HTML です。テキスト値は ALT テキストとして使用できるため、アクセシビリティ ガイドラインを満たしています。しかし、この ALT を ratingValue の値としてマークアップする方法がわかりません。
私がここで何をすべきか知っている人はいますか?
ありがとう。
さて、Google リッチ スニペット テスターを数時間いじった後、思いついたのは次のようなものです。
<tr itemprop="reviews" itemscope itemtype="http://schema.org/Review">
<th>Rating:</th>
<td itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<meta itemprop="ratingValue" content="4.5">
<img class="rating" src="/content/images/ratings/4.5.png" alt="4.5" title="Rating: 4.5 / 5" />
</td>
</tr>
これでちゃんと取れそうです。