Home › Forums › MapPress Support › Mashup shortcde not limiting no post per page › Reply To: Mashup shortcde not limiting no post per page
February 2, 2020 at 5:20 am
#18460
The copy and pate failed badly – sorry
Here it is again
Display posts where the custom field key is a set date and the custom field value is now. Displays only posts which date has not passed.
$args = array(
‘post_type’ => ‘Event’,
‘meta_key’ => ‘Expires’,
‘meta_value’ => date( “Ymd” ), // change to how “event date” is stored
‘meta_compare’ => ‘>’,
);
$query = new WP_Query( $args );