Ordering posts by anniversary using only day and month
No, it’s not possible by using pre_get_posts alone. But you don’t have to use separate fields for the date. WP_Query, although doesn’t provide a simple query arg that would sort the posts by month and day only, you can use the posts_orderby filter hook to modify the ORDER BY clause (i.e. ORDER BY <the part … Read more