2017-06-20 2 views
1

短い質問。 このクエリに日付順に追加するには?クエリにorderbyを追加

<?php 
      if (have_posts()) while (have_posts()) : the_post(); 
      the_content(); 
      endwhile; 

      if($post->post_parent) 
      $children = wp_list_pages("title_li=&child_of=".$post->ID."&depth=1&echo=0"); 
      if ($children) { ?> 

答えて

0

あなたはパラメータが異なる値を持っている、「sort_column」パラメータを使用してページを並べ替えることができます。それは以下の値を受け入れます。 'post_date'、 'post_title'、 'post_name'、 'post_modified'、 'post_modified_gmt'、 'menu_order'、 'post_parent'、 'ID'、 'rand'、または 'comment_count'のうちの1つ以上です。

wp_list_pages("title_li=&child_of=".$post->ID."&depth=1&echo=0&sort_column=post_date"); 
関連する問題