抱歉,这不是完整的答案,但这可能是可能的,但您需要运行数据库查询或一些代码来查找图像,然后对该列表执行一些操作,例如将文件复制到新目录。
有消息here 关于如何存储特色图像。
这里有一个基于那篇文章的快速建议,是以伪代码形式编写的,但是如果这是您想要的,并且您知道如何编写一些Wordpress PHP,那么如果您打算手动执行此操作,这应该非常容易,并且可能会节省大量时间。
foreach ($allPostIDs as $postId) { // get all post ID\'s somehow and loop through them
if(has_post_thumbnail($postId)) { // if post has featured image
$fileInfo = get_attached_file(get_post_thumbnail_id($some_post_id));
// do something with the file info, like copy all files to a new directory or output to screen
}