使用orderby
和order
参数列表中的参数。请参见Orderby_Parameters 有关详细信息,请参阅WP\\U查询部分。
$category_ids = $arr_records = $post_data = array();
$categories = get_categories( \'child_of=4\' );
foreach( $categories as $category ) {
$category_ids[] = $category->term_id;
}
$post_data = get_posts( array(
\'cat\' => $category_ids,
\'orderby\' => \'title\',
\'order\' => \'ASC\',
) );
$post_data
现在应该按帖子标题[A-Z]排序。