fionix
Well-known member
In some of the major SEO tools they explained it like this:
The Schema.org item organization contains a property called sameAs. This property lets an organization or brand (company, club, school, etc.) reference a page that represents that organization’s identity. Use the address property to help us find you in local directories as well.
The example script looks like this:
And they explain where to set this:
However, you don’t have to write this code yourself. The WooRank Metadata Tool will create it for you, and you can just copy it to the <body> section of your homepage.
Actually, Google does not recognize our Twitter, Facebook or Linkedin profile, so I assume above would help.
Someone know how to do it?
The Schema.org item organization contains a property called sameAs. This property lets an organization or brand (company, club, school, etc.) reference a page that represents that organization’s identity. Use the address property to help us find you in local directories as well.
The example script looks like this:
Code:
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Organization",
"name" : "Example",
"url" : "https://www.example.com",
"sameAs" : [
"https://twitter.com/example",
"https://www.facebook.com/example",
"https://foursquare.com/v/example/4e296473149554c77442cc98",
"http://www.yelp.com/biz/your-business-url-from-yelp",
"https://www.instagram.com/example/?hl=en"
],
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Example Street",
"addressRegion": "CA",
"postalCode": "94040",
"addressCountry": "US"
}
}
</script>
And they explain where to set this:
However, you don’t have to write this code yourself. The WooRank Metadata Tool will create it for you, and you can just copy it to the <body> section of your homepage.
Actually, Google does not recognize our Twitter, Facebook or Linkedin profile, so I assume above would help.
Someone know how to do it?