Skip to content

Instantly share code, notes, and snippets.

@edurodriguesdias
Last active December 14, 2018 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edurodriguesdias/92a0adc1852dcf9c8d34348c243f2239 to your computer and use it in GitHub Desktop.
Save edurodriguesdias/92a0adc1852dcf9c8d34348c243f2239 to your computer and use it in GitHub Desktop.
Show only files with .zip or .pdf extension WP MEDIA - Wordpress
var image = wp.media({
title: 'Import file',
multiple: false, //if true, allow select multiple files
library: {
type: [ 'application/zip', 'application/pdf' ]
}
}).open()
.on('select', function(e){
//DO SOMETHING
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment