0

I am using Visual Composer in WordPress in that i need to display the past events comparing with current date.I have tried this.

$today = date('yymmdd');
$args = array(
    'post_type' => 'event',
    'meta_query' => array(
        array(
            'key' => 'date_short_order',
            'value' => date("yymmdd"),
            'compare' => '<',
            'type' => 'DATE'
        )
    )
);

Any one help me.

Ravi Kumar
  • 190
  • 2
  • 12

1 Answers1

1

Did you try like this?

$today = date('yymmdd');

$args = array(
    'post_type' => 'event',
    'meta_query' => array(
        array(
            'key' => 'date_short_order',
            'value' => date("Y-m-d"),
            'compare' => '<',
            'type' => 'DATE'
        )
    )
);

I replace this 'value' => date("yymmdd"), to 'value' => date("Y-m-d"),

Vel
  • 9,027
  • 6
  • 34
  • 66