- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为我的网站文章做结构化数据。为此,我使用了一个 JSON-LD,它是使用 Google Markup Helper 制作的,还添加了一些属性来消除错误。现在,只有一个错误
The attribute publisher.itemtype has an invalid value.
我的组织也有不同的结构化数据。但是,它也不接受该值。这是我正在使用的文章代码之一
{
"@context" : "http://schema.org",
"@type" : "Article",
"name" : "Registration and Expiration Date in PHP and MySQL",
"image" : "https://i0.wp.com/technopoints.co.in/wp-content/uploads/2018/07/Expiration.jpg?resize=900%2C506&ssl=1",
"articleBody" : "Hey Technoz, In this tutorial we are going to learn how to create automatic registration and expiration date in php ...",
"url" : "https://technopoints.co.in/expiration-date-in-php/",
"author" : "Ashish Joshi",
"datePublished" : "01/07/2018",
"headline" : "Registration and Expiration Date in PHP and MySQL",
"publisher" : "Softglobe Technologies"
}
以下是组织结构代码。它没有错误。
{"@context":"https:\/\/schema.org","@type":"Organization","url":"https:\/\/technopoints.co.in\/","sameAs":["https:\/\/www.facebook.com\/technopoints.co.in","https:\/\/plus.google.com\/116699158294208258487"],"@id":"https:\/\/technopoints.co.in\/#organization","name":"Softglobe Technologies","logo":"https:\/\/technopoints.co.in\/wp-content\/uploads\/2017\/12\/iconnew.png"}
最佳答案
属性(property)规范 publisher 告诉我们:
Values expected to be one of these types: Organization or Person.
在您的标记中,您没有为此属性指定嵌入类型。如果将类型 Organization 安装为嵌入式,则在此类型中,您可以将标记应用于您的组织。
例如:
{
"@context" : "https://schema.org",
"@type" : "Article",
"name" : "Registration and Expiration Date in PHP and MySQL",
"image" : "https://i0.wp.com/technopoints.co.in/wp-content/uploads/2018/07/Expiration.jpg?resize=900%2C506&ssl=1",
"mainEntityOfPage":"https://technopoints.co.in/expiration-date-in-php/",
"speakable":
{
"@type": "SpeakableSpecification",
"xpath": [
"/html/head/title",
"/html/head/meta[@name='description']/@content"
]
},
"author" :{
"@type": "Person",
"name":"Ashish Joshi",
"alumniOf":"An organization that the person is an alumni of",
"award":"An award won by or for this item",
"memberOf":"An Organization (or ProgramMembership) to which this Person or Organization belongs",
"email":"zzz@hhhrr.com",
"honorificSuffix":"An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW",
"knowsAbout":"Of a Person, and less typically of an Organization, to indicate a topic that is known about - suggesting possible expertise but not implying it",
"sameAs":[
"https:\/\/plus.google.com\/0000",
"https:\/\/facebook.com\/0000",
"https:\/\/twitter.com\/0000"
]
},
"datePublished" : "01/07/2018",
"dateModified":"10/08/2018",
"headline" : "Registration and Expiration Date in PHP and MySQL",
"publisher" : {
"@type": "Organization",
"name":"Softglobe Technologies",
"url":"https:\/\/technopoints.co.in",
"logo":{
"@type":"ImageObject",
"url":"https://technopoints.co.in/images/logo.jpg",
"contentUrl":"https://technopoints.co.in/images/logo.jpg",
"width":"300",
"height":"100"
},
"sameAs":"https:\/\/plus.google.com\/116699158294208258487"
}
}
请注意我在此标记中所做的以下更改:
删除了属性 articleBody,因为该属性复制了文章的全部内容,降低了下载速度,并且 Google 不支持该属性。
根据 Google 对 Article 的建议添加属性 mainEntityOfPage。
根据 Google 的建议添加了 speakable 属性。此属性将帮助机器人确定对语音搜索有用的内容。在这个特定的标记中,指定了一个路径,用于从网页的元标题和元描述中获取信息。但是,此属性仅支持新闻网站。因此,如果您的网站不是新闻,则删除它即可。请注意,在语音内容中不应有日期和不同的符号和元素,这些符号和元素对于语音发布而言可能难以理解。阅读更多 Guide of Google to speakable 。
具有嵌入类型 Person 的属性作者的更完整标记。这将有助于确定可识别为Your Money Or Your Life: YMYL 的内容负责人的信息。这可以对应于 Google 的搜索质量评估指南 和要求 Expertise, Authoritativeness, Trustworthiness: EAT。
根据 Google 的建议将属性 dateModified 添加到文章中。
当然,属性发布者的标记已添加并更正。
阅读更多 Guide of Google to Article .
关于schema.org - 结构化数据说 "The attribute publisher.itemtype has an invalid value.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51806778/
我正在为我的 Unity 游戏制作一个元素系统,我正在使用 C# 来完成它。我有一个名为 ItemType 的抽象类,它包含有关特定类型项目的信息(例如其名称、重量、市场值(value)、ID 等)。
在ASP.Net中使用DataGrid时真的没有快捷方法吗 (e.Item.ItemType==ListItemType.Item || e.Item.ItemType==ListItemType.A
我一直收到错误“C2440:” '=': cannot convert from 'const FDHNode *' to 'FDHNode *"而且我一辈子都弄不明白。这是我的代码和定义函数,其中问
当我试图完成一个数据结构分配时,在实现文件中有一些函数以: template ClassName::ClassName( ) { } 我现在清楚了 用于替换特定类型(String、double、i
好的,所以我查找了一些关于强类型中继器控件的很酷的东西……唯一的问题是它不起作用。我有一个 List我已经绑定(bind)了我的中继器。我只想显示数据。通常我使用((Entry)(Container.
我从我的数据结构教科书中复制了这段代码: #pragma once // remove intellisense error // Created by Frank M. Carrano and T
如果我理解正确的话,可以在没有itemtype的情况下使用itemprop。这是真的? 如果是这样,在 SEO 方面有何不同?将它与 itemtype 一起使用会更好吗?我猜是的,很明显,但是如果 M
如果我在创建新的 itemtype 时没有在 Hybris 中的 itemtype 中指定扩展,会发生什么情况? 例如: 最佳答案 我找到了答案。它默认扩展为 GenericIte
我在从 ItemType 堆栈访问 ItemType 类中的方法时遇到问题。 我的 ItemType 类非常简单 public class SteveItemType{ private St
我是新来的代码。我正在尝试在我的联系页面上为 Google 评论添加结构化数据代码: http://www.catnips.co.uk/in-home-mobile-cat-groomer-felin
在文档上设置相同的 itemprop 和 itemscope 是否可以,还是不好的做法? 我问的原因是我的 View 布局没有以线性方式显示类型,例如。公司头像位于侧边栏上,公司名称即标题位于 art
我正在为我的网站文章做结构化数据。为此,我使用了一个 JSON-LD,它是使用 Google Markup Helper 制作的,还添加了一些属性来消除错误。现在,只有一个错误 The attribu
如果当前页面中存在具有属性 [itemtype='http://schema.org/Offer'] 的 HTML 标记,我希望以最快的方式使用 Javascript 进行检测。 最佳答案 if(do
我有一个由三个嵌套的中继器组成的结构来呈现一个选项卡,然后在这些选项卡下有一些按标题分组的项目。我一直在标准 IEnumerable 上成功使用 .NET 4.5 中的强类型数据控件类型,但这是我第一
我有这段代码,我需要能够搜索 HierarchyItem 的不同列表s 并返回正确类型的列表 即 Hierarchy h = new Hierarchy(); //add a load of item
我试图理解存在两个属性背后的原因,而不是仅仅让包含“itemtype”的元素成为包装项目范围的元素。 在一个元素上具有“itemtype”属性而在其他元素上具有“itemscope”属性是否有效?像这
如果我使用 标签 itemprop="review"项目范围 itemtype="http://mydomainname.com/Review" itemtype 那么我是否需要在我的网站上创建一个名
当作者也是发布者时,如何解决“属性Publisher.itemtype具有无效值”的问题? 总的来说,我有一个想要高效率SEO网站的客户,他写,打印,出售和出版自己的书。 Google不批准我的设置,
这个问题在这里已经有了答案: Correct way to use multiple itemtypes in Microdata (2 个回答) 3年前关闭。 我想知道是否可以在一个项目范围内使用多
我有文章页面,页面上唯一的内容就是文章。使用 schema.org 微数据标记页面时,最好在 的最顶部定义 itemscope 和 itemtype标签?或者在 标签?或者 在 body 里?还是无
我是一名优秀的程序员,十分优秀!