Blog Archive using virtual pages?

You could use a route rather than virtual pages

'routes' => [
  [
    'pattern' => 'blog/archive/(:any)/(:any)',
    'action' => function($year, $month) {
      // filter collection of articles here
    }
  ]
]
1 Like