Skip to content

Instantly share code, notes, and snippets.

@claudioweb
Created August 15, 2016 19:13
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 claudioweb/6ec6b2e38e05c17585a8676926cb2dd7 to your computer and use it in GitHub Desktop.
Save claudioweb/6ec6b2e38e05c17585a8676926cb2dd7 to your computer and use it in GitHub Desktop.
Abrir Mídia do wordpress
jQuery(document).ready(function($){
var custom_uploader;
$('#upload_image_button').click(function(e) {
e.preventDefault();
if (custom_uploader) {
custom_uploader.open();
return;
}
custom_uploader = wp.media.frames.file_frame = wp.media({
title: 'Escolha a imagem para o banner',
button: {
text: 'Selecionar'
},
multiple: false
});
custom_uploader.on('select', function() {
attachment = custom_uploader.state().get('selection').first().toJSON();
$('#upload_image').val(attachment.url);
});
custom_uploader.open();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment