尝试使用一个新的WP\\u查询,当您使用get\\u posts时,您使用的是主WP\\u查询,它具有其他插件可以用来更改查询的挂钩。我还看到,您使用的是无效的include密钥
$my_query = new WP_Query( array(
\'post__in\' => array( 1633, 1634, 1635 ),
\'post_status\' => \'any\',
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'order\' => \'ASC\',
\'orderby\' => \'post__in\'
) );