I would like to modify the following query to filter out posts where the event_date is older than the current date:
<?php
$args = array (
'post_type' => 'event',
'meta_key' => 'event_date',
'orderby' => 'meta_value_num',
'order' => 'ASC'
);
$the_query = new WP_Query ($args)
?>
Please can you advise?
Merry Christmas,
Steve.