Any way to have posts like /date/slug online?

Wordpress has that option, but I can’t seem to find it in Ghost.

All frontend route-based configuration in Ghost is managed via Dynamic Routing

Based on the default configuration and the aformentioned docs, you can get dated post permalinks using the following config:

routes:

collections:
  /:
    permalink: '/{year}/{month}/{day}/{slug}'
    template:
      - index

taxonomies:
  tag: /tag/{slug}/
  author: /author/{slug}/
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.