Hey @simplecreative,
without having a look at the exact setup and completely understanding your use case I am not sure if these are the only issues but:
- The
Meta key
you are using in the meta query has to be justprogram-datum
. - The
Meta value
you’re using is invalid. You should either just use something like{current_date:Ymd}
(the date format depends on the way JE stores the date field in the database) if you want to fetch posts for the current date or something like20231107
(again the date format depends on the way JE stores the date field in the database) if you want to fetch posts for a specific date.
Best,
André