• Hello,
    I have this arguments to sort Posts by meta value:

    	$args = array(
    	    'numberposts' => '15',
                'post_status' => 'publish',
                'post_type' => 'aec_events',
                'meta_key' => 'start_date_time',
                'orderby' => 'meta_value',
                'order' => 'ASC'
            );

    Unfortunetly post with start_date_time in the past are even displayed.
    How can I filter this so only posts with meta_value >= Today are displayed?

    Thank you for answer
    Andreas

  • The topic ‘filter Posts by Meta date field’ is closed to new replies.