Skip to content

Instantly share code, notes, and snippets.

@saimonh3
Created July 30, 2021 20:09
Show Gist options
  • Save saimonh3/d5b64c33345512bc3c9c794fb0747922 to your computer and use it in GitHub Desktop.
Save saimonh3/d5b64c33345512bc3c9c794fb0747922 to your computer and use it in GitHub Desktop.
Refresh the WP media library on image upload.
/**
* Refresh the media library on image upload.
* So, it doesn't show previously uploaded images on new uploads
*/
export const refreshMediaLibrary = () => {
wp?.media?.frame?.content?.get?.()?.collection?.props?.set?.( { ignore: ( +new Date() ) } );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment