Tôi muốn chọn hình ảnh từ trình tải lên phương tiện WordPress 3.5. Tôi có thể lấy URL hình ảnh với mã sau đây, nhưng nó có được hình ảnh kích thước đầy đủ. Tôi muốn lấy url hình ảnh thu nhỏ, làm thế nào tôi có thể có được điều đó?
var custom_uploader;
$('.upload-image').click(function(e) {
e.preventDefault();
if (custom_uploader) {
custom_uploader.open();
return;
}
custom_uploader = wp.media.frames.file_frame = wp.media({
title: 'Choose Image',
button: {
text: 'Choose Image'
},
multiple: false
});
//When a file is selected, grab the URL
custom_uploader.on('select', function() {
attachment = custom_uploader.state().get('selection').first().toJSON();
var abc = attachment.url; //this is full image url.
alert (abc);
});
custom_uploader.open();
});