How to add social profile links to structured data?

Google shows Social Profile links on the Knowledge Panel. You can add your profile links there by updating your Organization or Person schema. Here is how it works with SNIP

Social Profile links on Googles Knowledge Graph

During the time of writing this blog post I was not able to find a knowledge graph that actually showed social profile links.

The picture from the right is the search result that Google shared on the documentation page for social profile schemas.

I don’t know if social profile icons are only temporarily hidden or if it stays that way.

I’ll nevertheless explain the official way to add them.

Add to organization

SNIP – The Rich Snippets and Structured Data Plugin for WordPress ships with some examples already. One of it is an Organization markup that you can use as a starting point.

All you need to do is to add the sameAs property to your Organization snippet.

Then choose “Direct text input” for the field type.

Then enter your social link URL to the input field that appears.

Organization schema.org syntax with sameAs property (for social profiles)

If you want to add multiple links, just add the sameAs property multiple times. As shown in my Structured Data Training videos (especially then one that explains the overwriting functionality of SNIP), multiple properties with the same name will merged together later to an array of values.

The code that SNIP generates would then look like this:

{
  "@context": "http://schema.org",
  "@type": "Organization",
  "url": "https://rich-snippets.io",
  "name": "The WP-Buddy",
  "logo": {
    "url": "https://rich-snippets.io/wp-content/uploads/2017/08/cropped-rich-snippets-icon.jpg",
    "width": "512",
    "@context": "http://schema.org",
    "@type": "ImageObject"
  },
  "sameAs": [
    "https://twitter.com/floriansimeth",
    "https://www.youtube.com/channel/UCgD-u1bC1LxSh_a1wn67yQQ"
  ]
}

Add to a Person

Google says that this works for a Person Schema, too. All you need to do is to follow the steps above and add sameAs property to a Person.