如何用微数据正确陈述一篇文章的作者信息?

时间:2013-06-13 14:03:15

标签: article microdata author rich-snippets

我正在使用microdata system for some articles。 但我无法找到一些好的资源来了解我的架构的结构是否适合作者。

"文章" s shema允许指定"作者",但如何指出关于该作者的信息(图像,链接,名称)?

Actualy我使用以下(fiddle):

<div itemscope itemtype="http://schema.org/Article">
    <h1 itemprop="name">Article title</h1>
    <div itemprop="articleBody">
        Lorem ipsum dolor sit amet...
    </div>
    <div itemprop="author" itemtype="http://schema.org/Person" class="author">
        <a href="member-page.html" itemprop="url">
          <img itemprop="image" src="http://pic.okisurf.com/member/none/xs/m.png"/>
          <span itemprop="name">Author name</span>            
        </a>
    </div>
</div>

这条线是否正确?

<div itemprop="author" itemtype="http://schema.org/Person">

如果不是,我们将非常感谢任何帮助或资源链接。

1 个答案:

答案 0 :(得分:1)

似乎要在另一个内部指定新的itemtype,我们需要指定itemscope的另一个时间!

所以这一行是正确的:

<div itemscope="" itemprop="author" itemtype="http://schema.org/Person">

为确保微观数据形成良好,我建议使用Webmaster Tools richsnippets test