2017-06-20 73 views
1

簡短的問題。 如何在此查詢中添加按日期排序?將訂單添加到查詢

<?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_author','post_date','post_title','post_name','post_modified','post_modified_gmt','menu_order','post_parent','ID','rand'或'comment_count'。

wp_list_pages("title_li=&child_of=".$post->ID."&depth=1&echo=0&sort_column=post_date");