-1

schema.org のブログ投稿は大丈夫ですか... エラーがあると思いますか?... 何か提案があります... ありがとう

<div id="blog_post" itemscope="" itemtype="http://schema.org/BlogPosting">
<div style="float: left;">
<a href="image link is here">
<img itemprop="image" src="image source link is here" width="150px" alt="image description is here"/></a></div>
<div style="font-size: 10pt; font-weight: bold; margin-bottom: 10px;" itemprop="name">
<a href="item link is here" itemprop="url">item title is here</a></div>
<div id="description" style="font-family: Arial, Helvetica, sans-serif;margin-bottom: 10px;">
<span style="font-size: 11pt; font-weight: bold;" itemprop="description">item description is here</span></div></div>
4

1 に答える 1

0

Microdata に関係のないものを削除すると、次のようになります。

<div itemscope itemtype="http://schema.org/BlogPosting">
  <img itemprop="image" src="…" />
  <div itemprop="name">
    <a href="…" itemprop="url">…&lt;/a>
  </div>
  <span itemprop="description">…&lt;/span>
</div>

Microdata と Schema.org の観点からは、それで問題ありません。

于 2014-06-22T19:48:07.763 に答える