Query events by date (in the same year)
-
Hello!
I need help to show events by date that are >= than today but in the same year.Here’s a screen shot of my problem.
The site can be found here (under VERANSTALTUNGEN BOX):
https://www.meister.de/blog/This is my custom query:
$args = (array(
‘post_type’=> ‘tribe_events’,
‘posts_per_page’ => 5,
‘post_status’=>’publish’,
‘meta_key’ => ‘_EventStartDate’,
‘orderby’ => ‘meta_value’,
‘order’ => ‘ASC’,
‘meta_query’ => array(
array(
‘key’ => ‘_EventStartDate’,
‘value’ => date(“d.m.Y”),
‘compare’ => ‘>=’,
‘type’ => ‘NUMERIC’,
)
)
));
The topic ‘Query events by date (in the same year)’ is closed to new replies.