We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Google Search Console is reporting that the breadcrumb data is missing the 'id' field. Apparently the schema has changed a bit.
Instead of:
{ position: 1, name: 'Books', item: 'https://example.com/books', }, { position: 2, name: 'Authors', item: 'https://example.com/books/authors', }, ...
It should now be:
{ position: 1, item: { '@id': 'https://example.com/books', name: "Books" } }, { position: 2, item: { '@id': 'https://example.com/authors', name: "Authors" } }, ...
Documentation: https://schema.org/item https://jsonld.com/breadcrumb/
Thanks for the great package!
The text was updated successfully, but these errors were encountered:
Hey @0x54321, that's an interesting one..
I went with Google's own recommended approach:
https://developers.google.com/search/docs/data-types/breadcrumb
I will do a little digging on this and see can I find the correct approach.
Sorry, something went wrong.
fix: Fixes #95 breadcrumb issue
04de3f0
fix: Fixes #95 breadcrumb issue (#109)
a37e888
Successfully merging a pull request may close this issue.
Google Search Console is reporting that the breadcrumb data is missing the 'id' field. Apparently the schema has changed a bit.
Instead of:
It should now be:
Documentation:
https://schema.org/item
https://jsonld.com/breadcrumb/
Thanks for the great package!
The text was updated successfully, but these errors were encountered: