Okay
  Print

Change order of personnel posts

you can sort personnel posts according to title , id , author , and all parameters listed here :

http://codex.wordpress.org/Class_Reference/WP_Quer...

edit this file :

wp-content/themes/modernize-v3-16/include/plugin/page-item.php:

at line number #100 you will see :

query_posts(array('post_type' => 'personnel', 'personnel-category'=>$category, 
       'posts_per_page'=> $num_fetch));

Change that to :

query_posts(array('post_type' => 'personnel', 'personnel-category'=>$category, 
       'posts_per_page'=> $num_fetch,'orderby'=>'title'));

in above code i have added title but you can add any parameter like author , id and others which is listed here http://codex.wordpress.org/Class_Reference/WP_Quer...

OR if you want to set manual order regardless of above parameter then don't add above code , just use following plugin :

https://wordpress.org/plugins/post-types-order/

That's all !