什么 Schema.org 类型用于个人技能?
What Schema.org type to use for personal skills?
我不知道我的工作中的专业团队使用哪种 Schema.org 类型。
我有类似的东西:
team name
team photo
team member 1 name
team member 1 photo
team member 1 qualification/skills
team member 2 name
team member 2 photo
team member 2 qualification/skills
etc...
我可以使用类型 Organization
,但我不知道用什么来指定此人的 qualification/skills。
有什么想法吗?
每个人将由 Person
代表。
您可以使用该页面第一个 table 中定义的所有属性,即 Person
和 Thing
.
中的属性
如您所见,skills/qualifications 没有 属性。
根据您的实际情况,您可能会用到 jobTitle
property. And for a short paragraph of text (which may include information about skills/qualifications) about this person, you could use the description
property.
我已成功使用 Person 架构:itemprop="jobTitle" 和 itemprop="knows"。
那么您可以直接在您的简历中添加一个 link 来突出您的技能或关于页面:
<span class="resume" itemprop="knows">
<a href="https://www.hillwebcreations.com/about-jeannie-hill/" title="About Jeanne" target="_blank" itemprop="url">
<img src="https://www.hillwebcreations.com/wp-content/uploads/2014/05/hill-web-creations-Jeannie-Hill.jpg" alt="example of how to add skills via schema" itemprop="url">
</a>
</span>
最近,每个具有 Person 架构的页面都出现了一个新错误,指出它缺少 homeLocation。我们的 Google 合作伙伴支持人员表示,Search Console 中的这些错误会自行更正并很快消失。但是,与此同时,我能够通过添加以下代码来消除错误通知:
<div itemprop="homeLocation" itemscope itemtype="http://schema.org/PostalAddress">
<strong>Residence:</strong>
<span itemprop="addressLocality">Minneapolis</span>,
<span itemprop="addressCountry" itemscope itemtype="http://schema.org/Country">
<span itemprop="name">USA</span>
</span>
您可以在 GitHub. Or borrow ideas from my own site: Hill Web Marketing
上找到更多详细信息
我不知道我的工作中的专业团队使用哪种 Schema.org 类型。
我有类似的东西:
team name
team photo
team member 1 name
team member 1 photo
team member 1 qualification/skills
team member 2 name
team member 2 photo
team member 2 qualification/skills
etc...
我可以使用类型 Organization
,但我不知道用什么来指定此人的 qualification/skills。
有什么想法吗?
每个人将由 Person
代表。
您可以使用该页面第一个 table 中定义的所有属性,即 Person
和 Thing
.
如您所见,skills/qualifications 没有 属性。
根据您的实际情况,您可能会用到 jobTitle
property. And for a short paragraph of text (which may include information about skills/qualifications) about this person, you could use the description
property.
我已成功使用 Person 架构:itemprop="jobTitle" 和 itemprop="knows"。
那么您可以直接在您的简历中添加一个 link 来突出您的技能或关于页面:
<span class="resume" itemprop="knows">
<a href="https://www.hillwebcreations.com/about-jeannie-hill/" title="About Jeanne" target="_blank" itemprop="url">
<img src="https://www.hillwebcreations.com/wp-content/uploads/2014/05/hill-web-creations-Jeannie-Hill.jpg" alt="example of how to add skills via schema" itemprop="url">
</a>
</span>
最近,每个具有 Person 架构的页面都出现了一个新错误,指出它缺少 homeLocation。我们的 Google 合作伙伴支持人员表示,Search Console 中的这些错误会自行更正并很快消失。但是,与此同时,我能够通过添加以下代码来消除错误通知:
<div itemprop="homeLocation" itemscope itemtype="http://schema.org/PostalAddress">
<strong>Residence:</strong>
<span itemprop="addressLocality">Minneapolis</span>,
<span itemprop="addressCountry" itemscope itemtype="http://schema.org/Country">
<span itemprop="name">USA</span>
</span>
您可以在 GitHub. Or borrow ideas from my own site: Hill Web Marketing
上找到更多详细信息