嗯。。。请尝试稍微更改您的查询,以:
$args = array(
\'post_parent\' => $post_id,
\'post_status\' => \'inherit\',
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'order\' => \'ASC\',
\'orderby\' => \'menu_order ID\',
);
$attachment = new WP_Query( $args );
$attachment = $attachment->posts;
或者,您可以使用以下选项:
$attachments = get_children(
array(
\'post_parent\' => $post_id,
\'post_status\' => \'inherit\',
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'order\' => \'ASC\',
\'orderby\' => \'menu_order ID\',
)
);