WordPress 获取附件图片时去除特色图片

获取一篇文章中上传的所有图片,但是不包括 特色图片:

 get_the_ID(),
			'post_type' => 'attachment',
			'post_mime_type' => 'image',
			'exclude' => get_post_thumbnail_id( $post->ID ),
		))) : ?>
	
  • ID, 'thumbnail-latest'); ?>
?>