Home › Forums › Backend Issues (wp-admin) › Show only Upcoming event dates › Reply To: Show only Upcoming event dates
Hi @lowercase,
Thanks for the post.
To query all future events, you will need to incorporate a meta_query within your $args array.
Your code should then look like so:
<?php
$today = date('Ymd');
$args=array(
'post_type' => 'tour-date',
'meta_query' => array(
array(
'key' => 'event_date',
'compare' => '>',
'value' => $today,
)
),
);
// get posts
$posts = get_posts($args);
?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.