首先,论坛中 Schema.org 的应用非常到位!
不过,我想了解一下,是否有可能通过在个人资料页面也应用 Schema.org,并增加将社交媒体账户链接到该个人资料的功能,从而为“作者”在 Google 搜索结果中赋予更高的权威性。
Schema.org 中有一个 ProfilePage 类型,可在此处查看:ProfilePage - Schema.org Type
并非所有字段都是必需的,但以下是关于如何实现的一些示例标记:
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "ProfilePage",
"mainEntity" : {
"@type" : "Person",
"name" : "Jane Doe",
"givenName" : "Jane",
"familyName" : "Doe",
"email" : "jdoe@examplelaw.com",
"telephone" : "9195555555",
"jobTitle" : "Partner",
"image" : "https://www.examplelaw.com/wp-content/examplelaw/2018/02/jane-doe.jpg",
"url" : "https://www.examplelaw.com/attorney/jane-doe/",
"worksFor": {
"@type": "Organization",
"name": "Example Law Firm",
"url": "https://www.examplelaw.com/",
"address": {
"@type": "PostalAddress",
"addressLocality": "Raleigh",
"addressRegion": "NC",
"postalCode": "27604",
"streetAddress": "100 Main Street, Suite 201",
"addressCountry": "USA"
}
},
"gender": "female",
"alumniOf": [
{
"@type" : "CollegeOrUniversity",
"name" : "University of North Carolina at Chapel Hill"
},
{
"@type" : "CollegeOrUniversity",
"name" : "University of North Carolina School of Law"
}
],
"memberOf": [
"North Carolina State Bar",
"Wake County Bar",
"North Carolina Board Certified Family Law Specialist",
"Certified Parenting Coordinator",
"NCDRC Certified Family Financial Mediator"
],
"award": [
"North Carolina Super Lawyers, Rising Star 2018",
"Business Leader Magazine, North Carolina Top Family Lawyer"
],
"sameAs": [
"https://www.facebook.com/JaneDoeAttorney/",
"https://www.linkedin.com/in/jane-doe-attorney",
"https://twitter.com/janedoeattorney"
]
}
}
</script>
其中尤其是 sameAs 字段将是一个非常有价值的补充。


