Support

Account

Home Forums General Issues [WP_Query > orderby] Merge date and time fields Reply To: [WP_Query > orderby] Merge date and time fields

  • The time is stored in H:i:s format (for example: 16:30:00).

    Unfortunately this doesn’t work:

    $q = new WP_Query( array(
        'orderby' => array( 
            'event_date' => 'ASC',
            'event_time' => 'ASC',
        ),
    ) );

    The dates are mixed (and the times too).