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.