为了更好的搜索引擎优化,我需要在我的页面上添加一些元素:
<!-- 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">
然后我在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">
我该如何解决这个问题?
答案 0 :(得分:26)
您应该明确提供类型这些属性(name
,description
,image
)。
在Schema.org中,一切都是Thing
。 Thing
有许多子类型,列在“更具体的类型”下。从那里开始,为您的内容选择最具体的类型。
例如:WebPage
,Article
或BlogPosting
。
它可能看起来像(在这里使用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">