Created
August 15, 2016 19:13
-
-
Save claudioweb/6ec6b2e38e05c17585a8676926cb2dd7 to your computer and use it in GitHub Desktop.
Abrir Mídia do wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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