mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-06-05 15:08:20 +09:00
a635fd0524
needed to set a global variable, apparently
40 lines
852 B
JavaScript
40 lines
852 B
JavaScript
jQuery(document).ready(function($){
|
|
|
|
var custom_uploader;
|
|
var target_input;
|
|
|
|
$('.upload_default_image').click(function(e) {
|
|
|
|
target_input = $(this).prev('.upload_image_url');
|
|
|
|
e.preventDefault();
|
|
|
|
//If the uploader object has already been created, reopen the dialog
|
|
if (custom_uploader) {
|
|
custom_uploader.open();
|
|
return;
|
|
}
|
|
|
|
//Extend the wp.media object
|
|
custom_uploader = wp.media.frames.file_frame = wp.media({
|
|
title: ([objectL10n.text]),
|
|
button: {
|
|
text: ([objectL10n.text])
|
|
},
|
|
multiple: false
|
|
});
|
|
|
|
//When a file is selected, grab the URL and set it as the text field's value
|
|
custom_uploader.on('select', function() {
|
|
|
|
attachment = custom_uploader.state().get('selection').first().toJSON();
|
|
$(target_input).val(attachment.url);
|
|
});
|
|
|
|
//Open the uploader dialog
|
|
custom_uploader.open();
|
|
|
|
});
|
|
|
|
});
|