Override the default post ordering behavior for a custom post type using WordPress filters and custom query logic.
add_filter('pto/posts_orderby/ignore', 'isabel_deafult_orderby_ignore_fun', 10, 3);
function isabel_deafult_orderby_ignore_fun($ignore, $orderBy, $query){
if( ($query->query_vars['post_type'] == 'projects') )
$ignore = TRUE;
return $ignore;
}