Skip to content

Instantly share code, notes, and snippets.

@levantoan
Last active February 2, 2018 11:45
Show Gist options
  • Save levantoan/e8f377c57c364a1b19d0 to your computer and use it in GitHub Desktop.
Save levantoan/e8f377c57c364a1b19d0 to your computer and use it in GitHub Desktop.
Query and order custom post by meta value date format
<?php
$arg = array(
'post_type' => 'events',//thay bằng post type của bạn
'posts_per_page' => 3,
'orderby' => 'meta_value',
'meta_key' => 'start_date_event',//thay bằng meta key của bạn
'order' => 'ASC',
'meta_query' => array(
array(
'key' => 'start_date_event',//thay bằng meta key của bạn
'value' => date('Y-n-j'),
'compare' => '>=',
'type' => 'DATE'
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment