This is my code to query the posts but it doesnt work. I have a date format like this: dd.mm.yyyy
i changed the format a couple of times but it still dont work.
$args = array(
'meta_query' => array(
array(
'key' => 'gestorben',
'value' => date('dd.mm.yyyy'),
'type' => 'DATE'
)
),
'post_type' => 'traueranzeigen',
'showposts' => 10,
'paged' => $paged,
'suppress_filters' => $suppress_filters,
'meta_key' => 'gestorben',
'orderby' => 'meta_value',
'order' => 'DSC'
);
I hope you can help me