Skip to content

Instantly share code, notes, and snippets.

@danichim
Created March 15, 2021 09:04
Show Gist options
  • Save danichim/a3e064144bcf0e07785b52118a117ce1 to your computer and use it in GitHub Desktop.
Save danichim/a3e064144bcf0e07785b52118a117ce1 to your computer and use it in GitHub Desktop.
order by custom meta field date
$args = array(
'post_type' => 'event',
'order' => 'DESC',
'orderby' => 'meta_value',
'meta_key' => 'start_date',
'meta_query' => array(
array(
'key' => 'start_date',
'value' => date('Ymd'),
'compare' => '>='
)
)
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment