验证错误:"指定了itemprop属性,但该元素不是任何项目的属性"

时间:2015-03-18 13:31:09

标签: seo meta-tags w3c-validation schema.org microdata

为了更好的搜索引擎优化,我需要在我的页面上添加一些元素:

<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="The Name or Title Here">
<meta itemprop="description" content="This is the page description">
<meta itemprop="image" content="http://www.example.com/image.jpg"> 

Here is the source

然后我在Markup Validation Service上查看此代码:

<!DOCTYPE html>
<html>
<head lang="en">
  <meta itemprop="name" content="The Name or Title Here">
  <meta itemprop="description" content="This is the page description">
  <meta itemprop="image" content="http://www.example.com/image.jpg">
  <meta charset="UTF-8">
  <title>My title</title>
</head>
<body>
  My body.
</body>
</html>

抛出此错误:

  

第4行,第57列:指定了itemprop属性,但该元素不是任何项目的属性。

 <meta itemprop="name" content="The Name or Title Here">
     

第5行,第70列:指定了itemprop属性,但该元素不是任何项目的属性。

 <meta itemprop="description" content="This is the page description">
     

第6行,第68列:指定了itemprop属性,但该元素不是任何项目的属性。

 <meta itemprop="image" content="http://www.example.com/image.jpg">

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:26)

您应该明确提供类型这些属性(namedescriptionimage)。

在Schema.org中,一切都是ThingThing有许多子类型,列在“更具体的类型”下。从那里开始,为您的内容选择最具体的类型。

例如:WebPageArticleBlogPosting

它可能看起来像(在这里使用WebPage):

<html itemscope itemtype="http://schema.org/WebPage">

答案 1 :(得分:0)

如果您在itemprop中使用header元标记作为网站标题,说明等。

只需在您的itemscope itemtype="http://schema.org/WebPage"中添加html tag

最后:

<html itemscope itemtype="http://schema.org/WebPage">