diff options
Diffstat (limited to 'src/utils/schemas/blogSchema.ts')
-rw-r--r-- | src/utils/schemas/blogSchema.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/schemas/blogSchema.ts b/src/utils/schemas/blogSchema.ts index 66a9bae..77f4632 100644 --- a/src/utils/schemas/blogSchema.ts +++ b/src/utils/schemas/blogSchema.ts @@ -14,6 +14,8 @@ export default ({ siteUrl, title, posts }: BlogSchemaParams): WithContext<Collec "name": title, "mainEntity": { "@type": "ItemList", + "itemListOrder": "https://schema.org/ItemListOrderDescending", + "numberOfItems": posts.length, "itemListElement": posts.map((post, index) => ({ "@type": "ListItem", "position": index + 1, |