'https://davidtsadler.com', 'production' => true, // Collections 'collections' => [ 'posts' => [ 'filter' => function ($item) use ($now) { // Only publish posts that have a date and which is not in the future. $date = $item->getDate(); return $date ? $date <= $now : false; } ], ], ];