I use the following code to display posts from custom post type
query_posts( array( 'post_type' => 'success-stories', 'paged' => $paged, 'posts_per_page' => -1, 'meta_key' => 'post_id', 'orderby' => 'meta_value_num', 'order' => 'ASC' ) ); An arbitrary post_id field is set in order to be able to manually sort the posts (in the required order). But it is also necessary that the posts for which this parameter is not specified are displayed. Tell me, what needs to be changed in the request parameters?