I'm trying to query some posts between 2 dates, look like it's not working because my posts are not int YYYYMMDD format but in european format DD.MM.YYYY
$args = array(
'orderby' => 'meta_value',
'meta_key' => 'usp-custom-rdvp_date_event_start',
"order" => "ASC",
'meta_query' => array(
array(
'key' => 'usp-custom-rdvp_date_event_start',
'value' => array( $fromDate, $toDate ),
'type' => 'DATE',
'compare' => 'BETWEEN',
),
),
);
Did you have a hack to query between 2 European date?
PS. I can't change the date format