• Resolved ivanabeni

    (@ivanabeni)


    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.
    Custom query ba date (in the same year)

    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’,
    )
    )
    ));

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Query events by date (in the same year)’ is closed to new replies.