WordPressの投稿記事の順番を変える

ブログの特性で記事を古いものから順に見せたかったので
少しphpに手を加えました。

category.phpに下記の一文を追加します。

<?php if(is_archive()) :
query_posts($query_string.’&order=ASC’); endif ?>

追加する場所は場所

<?php if ( have_posts() ) : ?>

の上に追加します。

こんな感じです。

<?php if(is_archive()) :
query_posts($query_string.’&order=ASC’); endif ?>

<?php if ( have_posts() ) : ?>

%d人のブロガーが「いいね」をつけました。