• Resolved ivyowl

    (@ivyowl)


    I’m having an issue with the ordering of posts by date.

    The posts are displaying correctly in ascending order day and month but they are displaying 2020 dates before 2019 dates.

    Here is the query:

    $args = array(
    'post_type' => 'lnb_events',
    'posts_per_page' => -1,
    'orderby' => 'meta_value',
    'meta_key' => '_lnb_events_event-start-date',
    'order' => 'ASC',
    );
    $loop = new WP_Query( $args );

    The meta key is a text_date picker generated by cmb2.

    Any help on this would be much appreciated.

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Date order issue’ is closed to new replies.