我当前的代码显示来自 cpt 'events' 的 5 个帖子。这是我正在使用的代码:
//get post type ==> events
global $post;
$args = array(
'post_type' => 'events',
'numberposts' => $data['home_events_count'],
'orderby' => 'meta_value',
'meta_key' => 'timestamp_earth_event_start_date',
'meta_query' => $meta_query
);
我想过滤掉“timestamp_earth_event_start_date”早于当前日期的帖子(事件)。
我尝试自己修改代码,但仍然显示过去的事件。
非常感激任何的帮助!