Order and group posts by acf by month and year
When you query the posts with orderby argument as a event_date (it could be any field with date format) the posts are ordered by date, desc or asc. So the only thing you have to do afterwards is to group them by year and month. So: <?php $posts = get_posts(array( ‘post_type’ => ‘post’, ‘meta_key’ => … Read more