Editing Breadcrumb List
-
I have read this webpage on Yoast Schema Graph APi, specification and technicalities:
https://developer.yoast.com/features/schema/apiAppreciate the info.
However, I would like to edit the JSON LD generated by Yoast SEO, because certain JSON LD generated doesn’t fit my requirements (mainly for Google SEO). One important example, is that for breadcrumb hierarchy, I require it to be:
Home >> Blog >> Category >> Sub-category >> etc >> Post/Article Title.
I have a lot of blog articles.
As you can see in this example blog article, https://meide.sg/marble-floor-cleaning-guide, the breadcrumb is missing “Blog”. The JSON LD code generated is:{ "@type": "BreadcrumbList", "@id": "https://meide.sg/marble-floor-cleaning-guide/#breadcrumb", "itemListElement": [ { "@type": "ListItem", "position": 1, "item": { "@type": "WebPage", "@id": "https://meide.sg/", "url": "https://meide.sg/", "name": "Home" } }, { "@type": "ListItem", "position": 2, "item": { "@type": "WebPage", "@id": "https://meide.sg/category/cleaning/", "url": "https://meide.sg/category/cleaning/", "name": "For Home Owners And Helpers" } }, { "@type": "ListItem", "position": 3, "item": { "@type": "WebPage", "@id": "https://meide.sg/category/cleaning/floor-cleaning/", "url": "https://meide.sg/category/cleaning/floor-cleaning/", "name": "Floor Cleaning" } }, { "@type": "ListItem", "position": 4, "item": { "@type": "WebPage", "@id": "https://meide.sg/marble-floor-cleaning-guide/", "url": "https://meide.sg/marble-floor-cleaning-guide/", "name": "How To Clean A Marble Floor In 6 Easy Steps" } } ] },
How can I do this to solve my problems?
Problem 1. To fix this breadcrumb problem.
Problem 2. To be able to edit the json ld code (and not just add/change or remove graph pieces).Thanks!
The page I need help with: [log in to see the link]
- The topic ‘Editing Breadcrumb List’ is closed to new replies.