Last active
April 15, 2019 17:24
-
-
Save warnakey/5ada39a24ccc98c2b889e84c44d4a468 to your computer and use it in GitHub Desktop.
Blog Homepage Schema Example in JSON-LD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This schema ONLY goes on the blog homepage (not individual blogs) --> | |
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "Blog", | |
"name": "Example Law Blog", | |
"url": "https://www.examplelaw.com/blog/", | |
"description": "Read the blog of Example Law Firm, a divorce lawyer firm, to learn about the latest valuable information in our industry.", | |
"sameAs": [ | |
"https://www.facebook.com/examplelaw/", | |
"https://twitter.com/examplelaw", | |
"https://www.yelp.com/biz/examplelaw" | |
], | |
"publisher": { | |
"@type": "Organization", | |
"name": "Example Law Firm" | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment