0

我正在为一些文章使用微数据系统。但是我找不到一些好的资源来知道我的模式结构对作者来说是否好。

“文章”的 shema 允许指定一个“作者”,但是如何指明这个作者的信息(图片、链接、姓名)?

实际上我使用以下(小提琴):

<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">

如果不是,任何帮助或资源链接将不胜感激。

4

1 回答 1

2

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

所以这条线是正确的:

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

为了确保微数据格式正确,我建议使用网站管理员工具 Richsnippets 测试

于 2013-06-13T15:14:21.267 回答