Support

Account

Home Forums Front-end Issues How to get future events taking place in another year with Date Picker?

Unread

How to get future events taking place in another year with Date Picker?

  • I am trying to get all the events in the future but it is not showing events in future years, for example in 2020.

    Here is my code so far:

    $upcomingEvents = new WP_Query(array(
    ‘posts_per_page’ => -1,
    ‘post_type’ => ‘event’,
    ‘order’ => ‘ASC’,
    ‘orderby’ => ‘meta_value_num’,
    ‘meta_key’ => ‘event_date’,
    ‘meta_query’ => array(
    array(
    ‘key’ => ‘event_date’,
    ‘compare’ => ‘>=’,
    ‘value’ => date(‘Ymd’),
    ‘type’ => ‘numeric’
    )
    )
    ));

    The output shows only upcoming events on December.

Viewing 1 post (of 1 total)

The topic ‘How to get future events taking place in another year with Date Picker?’ is closed to new replies.