2011-08-16 14 views

答えて

0

あなたがあなたの記事の順序を変更するには「ループ」の開始前に、次のコードを追加することができます。

<?php 
$posts = query_posts($query_string . '&orderby=title&order=asc'); 
// here comes The Loop! 
if (have_posts()) : while (have_posts()) : the_post(); ?> 

これは昇順でタイトルで投稿を注文するループを変更します。このorderby =とorder =を変更して、異なるフィールド間を変更したり、昇順または降順で並べ替えることができます。

関連する問題