新しい順/古い順は order
ポストの順番は order を設定し、新しい順は desc、古い順は asc を設定します。
最新のニュースを3件新しい順に表示する
$params = array(
'posttype' => 'news',
'limit' => 3,
'order' => 'desc',
);
$posts = $pec->set_params($params)->get_posts();
このように order を使えば、一覧の表示順を変更することができます