You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -389,6 +389,29 @@ If you embed tweets in your website, Twitter can use information from your site
389
389
- 📖 [Getting Started - schema.org](https://schema.org/docs/gs.html)
390
390
- 🛠 Test your page with the [Rich Results Test](https://search.google.com/test/rich-results)
391
391
392
+
### Google JSON-LD Schema
393
+
394
+
The following is used by Google to help provide your site with a knowledge graph result when someone Googles you (this is the pane to the right of the search results that typically appears for larger brands):
395
+
396
+
```
397
+
<script type="application/ld+json">
398
+
{
399
+
"@context":"http://schema.org",
400
+
"@type":"Organization",
401
+
"name":"yourbrand.com",
402
+
"url":"https://www.yourbrand.com/",
403
+
"logo":"https://www.yourbrand.com/logo.png",
404
+
"sameAs":[
405
+
"https://www.facebook.com/yourbrand",
406
+
"https://twitter.com/yourbrand",
407
+
"https://uk.pinterest.com/yourbrand/",
408
+
"https://www.instagram.com/yourbrand/",
409
+
"https://www.linkedin.com/company/yourbrand-com",
410
+
]
411
+
}
412
+
</script>
413
+
```
414
+
392
415
### Pinterest
393
416
394
417
Pinterest lets you prevent people from saving things from your website, according [to their help center](https://help.pinterest.com/en/business/article/prevent-saves-to-pinterest-from-your-site). The `description` is optional.
0 commit comments