My website should contain several article series and I wish to create such series with the Drupal core, without customizing the core or installing any modules.
I thought about:
- Creating a content type with the name "Article"
- Creating a content type with the name "ATOC" (Article Table of Contents)
- For each node of the ATOC content type, creating new taxonomy with the same name (
series_SERIES_NAME
) and giving it to any article in the series as well - Creating a view-page which takes all nodes with the unique series taxonomy.
But then I don’t know how to set the pagination for each node in the series, pagination which should include next article, previous article, go to last article, go to first article, choose page in series by number, etc.
How to create a series of articles with Drupal?