2019年更新。我找到了一个不会破坏上传程序的更好解决方案:
wp.media.frame.on(\'open\', function() {
if (wp.media.frame.content.get() !== null) {
// this forces a refresh of the content
wp.media.frame.content.get().collection._requery(true);
// optional: reset selection
wp.media.frame.content.get().options.selection.reset();
}
}, this);