Site icon Hip-Hop Website Design and Development

Can I ‘order by’ date that is in a text field?

Had some coding done by a freelancer and he added the completion date into postmeta > meta_value which is a text field.

Don’t fully understand WP functions and structure, so thought it best to ask here.

Problem is I want to order the list via date.

Can I use strtodate in the wordpress arguments and if so how to I write it for WP ?

$args2 = array('post_type' => 'joblist', 'post_status' => 'publish', 'showposts' => -1, 'order' => 'ASC',);
  $slider_loop2 = new WP_Query($args2);

Many thanks in advance