如果我明白了,您希望按照上载附件的相同顺序获取附件。您可以按日期对其进行排序,在这种情况下:
$args = array(
\'orderby\' => \'date\',
\'order\' => \'ASC\',
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'post_parent\' => $id,
\'post_status\' => \'inherit\',
);
$posts = get_posts( $args );
这将按日期对附件进行排序,这很可能是您正在查找的附件。