sort custom post type by display name

I fixed this issue by adding a new post_meta to my custom_post_type… which added both

add_post_meta($postid$current_user->first_name . $current_user->last_name;

Then sorting by that post_meta using:

array('meta_key' => 'mlp_author', 'orderby => 'meta_value')