WordPress Order Posts by a Meta Value

By Forrest Smith - Drempd.com

$args = array(

   'post_type' => 'sessions',

   'post_status' => 'publish',

   'posts_per_page' => -1,

   'orderby' => 'meta_value',

   'meta_key' => 'session_date',

   'order' => 'ASC'

);