Skip to content

Instantly share code, notes, and snippets.

@serguk0
Created November 15, 2018 01:13
Show Gist options
  • Select an option

  • Save serguk0/94294e6fcad11a7deefc0da1f0c3b947 to your computer and use it in GitHub Desktop.

Select an option

Save serguk0/94294e6fcad11a7deefc0da1f0c3b947 to your computer and use it in GitHub Desktop.
$main_args = [
'post_type' => 'lectures',
'posts_per_page' => -1,
'orderby' => 'bydate',
'order' => 'ASC',
'meta_query' => [
'bydate' => [
'key' => 'date',
'value' => date("Y/m/d"),
'compare' => '>=',
'type' => 'DATE'
]
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment