Skip to content

Instantly share code, notes, and snippets.

@twentyfortysix
Last active May 19, 2023 14:23
Show Gist options
  • Save twentyfortysix/f20a7fcd1765b5093cdb6f989a006dcf to your computer and use it in GitHub Desktop.
Save twentyfortysix/f20a7fcd1765b5093cdb6f989a006dcf to your computer and use it in GitHub Desktop.
WP - sort by date and time custom values
'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