The Series feature groups multiple articles published across different dates or sections into a named sequence.
Series is implemented as a taxonomy, which is why the front matter variable is defined as a list of strings.
Configuration
Ensure the series taxonomy is explicitly defined in your project configuration.
hugo.yaml
taxonomies:
series: seriesFront Matter Setup
Set series to the series name and series_weight to control the article's position within the sequence.
content/posts/example-article.md
---
title: "Example Article"
series: ["Documentation"]
series_weight: 10
---Sorting Logic
Articles within a series are sorted by their taxonomic weight. If series_weight is not set, Hugo applies its default sort order.