itemprop="articleBody"
在多个元素上使用是不好的做法。我问是因为我的页面看起来像这样:
<main class="post content">
<article itemscope itemType="http://schema.org/BlogPosting">
<header>
<h1 itemprop="headline">My Blog Headline</h1>
<p><time class="dt-published" itemprop="datePublished" pubdate datetime="2015-01-24 19:08:00">Jan 24, 2015</time></p>
<p itemprop="author">Published by <a class="p-author h-card" itemprop="name" href="http://author.co.uk">Author Name</a></p>
</header>
<section itemprop="articleBody">
<p>Article body</p>
<p>Article body</p>
</section>
<section class="gallery">
...
</section>
<section itemprop="articleBody">
<p>Article body</p>
<p>Article body</p>
</section>
</article>
</main>
我的文章正文之间有一个画廊,可以像上面那样itemprop="articleBody"
在多个section
s 上使用吗?
display: none
PS在我的 上使用也是不好的做法itemprop="author"
吗?我不希望它成为页面设计的一部分,还有其他方法吗?