Last active
May 6, 2020 08:44
-
-
Save roelofjan-elsinga/302ad77b12423ee039cc651ec82ff4a2 to your computer and use it in GitHub Desktop.
Structured data for Breadcrumbs
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
| <script type="application/ld+json"> | |
| { | |
| "@context": "https://schema.org", | |
| "@type": "BreadcrumbList", | |
| "itemListElement": [{ | |
| "@type": "ListItem", | |
| "position": 1, | |
| "name": "Plant care for Beginners", | |
| "item": "https://plantcareforbeginners.com" | |
| }, | |
| { | |
| "@type": "ListItem", | |
| "position": 2, | |
| "name": "Plant guides", | |
| "item": "https://plantcareforbeginners.com/articles" | |
| }, | |
| { | |
| "@type": "ListItem", | |
| "position": 3, | |
| "name": "How to care for a Calathea Ornata", | |
| "item": "https://plantcareforbeginners.com/articles/how-to-care-for-calathea-ornata" | |
| }] | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment