Created
November 15, 2018 01:13
-
-
Save serguk0/94294e6fcad11a7deefc0da1f0c3b947 to your computer and use it in GitHub Desktop.
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
| $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