Last active
July 24, 2019 14:07
-
-
Save mennwebs/1bfd04c2c7eaeaf2d3eceb420f65dd0d to your computer and use it in GitHub Desktop.
แสดง Event (CPT) หน้าแรก เรียงตามวันที่จะมาถึง
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
| <?php | |
| $args = array( | |
| 'posts_per_page' => 5, | |
| 'post_type' => 'event', | |
| 'meta_key' => 'date', | |
| 'meta_value' => date("Ymd"), | |
| 'meta_compare' => '>', | |
| 'orderby' => 'meta_value_num', | |
| 'order' => 'ASC', | |
| ); | |
| $event_query = new WP_Query($args); | |
| while ($event_query->have_posts()) { | |
| $event_query->the_post(); | |
| get_template_part('template-parts/content', 'event'); | |
| } | |
| wp_reset_postdata(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment