This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(select ID, max(post_date) as max_post_date, post_type from wp_posts where post_type = 'post' and post_status='publish' group by id order by max_post_date desc limit 1) | |
union | |
(select ID, max(post_date) as max_post_date, post_type from wp_posts where post_type = 'event' and post_status='publish' group by id order by max_post_date desc limit 1) |