Last active
May 19, 2023 14:23
-
-
Save twentyfortysix/f20a7fcd1765b5093cdb6f989a006dcf to your computer and use it in GitHub Desktop.
WP - sort by date and time custom values
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
'meta_query' => [ | |
'date_' => [ | |
'key' => 'start_date', | |
'compare' => 'EXISTS', | |
], | |
'time_' => [ | |
'key' => 'start_time', | |
'compare' => 'EXISTS', | |
], | |
], | |
'orderby' => [ | |
'date_' => 'ASC', | |
'time_' => 'ASC' | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment