只需添加post__not_in
参数并使用get_post_thumbnail_id()
作用
$args = array(
\'post_type\' => \'attachment\',
\'post_parent\' => $product_id,
\'post_mime_type\' => \'image\',
\'orderby\' => \'menu_order\',
\'order\' => \'ASC\',
\'numberposts\' => -1,
\'post__not_in\' => array(get_post_thumbnail_id($product_id))
);
$attachments = get_posts($args);