↓のように、記事ループ処理の前に、query_posts関数を使う。
下記の場合は、IDの昇順でソートしている。
< ?php query_posts($query_string . ‘&order=ASC&orderby=ID’ ); ?>
< ?php if (have_posts()) : ?>
< ?php while (have_posts()) : the_post(); ?>
使えるパラメータは以下の通り
1:numberposts
記事数を指定
デフォルトは、「5」
2:offset
最新の投稿記事から数えて、何番目の記事を表示するか指定
デフォルトは、「0」
3:category
選択する投稿記事のカテゴリーid(数値)を指定
4:orderby
表示順を設定
post_author ・・・ 投稿ユーザーid
post_date ・・・ 投稿日(デフォルト)
post_modified ・・・ 更新日
post_name ・・・ 投稿記事スラッグ
post_title ・・・ 投稿記事タイトル
ID ・・・ 投稿記事id
5:order
表示順を指定
ASC ・・・昇順
DESC ・・・降順(デフォルト)