WordPress 3.5メディアアップローダから画像を選択したいです。次のコードで画像のURLを取得できますが、フルサイズの画像を取得します。サムネイル画像のURLを取得したいのですが、どうすれば取得できますか。
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();
});
添付の結果は、次の方法でデバッグできます。
console.log(attachment);
利用可能なサムネイルのサイズがあれば、あなたはそれを使用してそれを取得することができます:
var thumb = attachment.sizes.thumbnail.url;
alert(thumb);
私自身の研究をしているこの質問を見つけて、そして私が価値があるかもしれないと思ったより豊富な解決策を開発することになった。
ユーザーが選択したメディアサイズのURLを知りたい場合は、次のコード(下記の完全なjQueryコード)が役に立ちます。
jQuery(function($) {
// Bind to my upload butto
$(document).on('click', 'a.custom-media-upload', function() {
customUpload($(this));
return false;
});
function customUpload(el) {
formfield = $(el);
custom_media = true;
var _orig_send_attachment = wp.media.editor.send.attachment;
wp.media.editor.send.attachment = function(props, attachment) {
if ( custom_media ) {
formfield = renderUpload(formfield, attachment, props);
} else {
return _orig_send_attachment.apply( this, [props, attachment] );
}
}
wp.media.editor.open(1);
}
function renderUpload(field, attachment, props) {
// This gets the full-sized image url
var src = attachment.url;
// Get the size selected by the user
var size = props.size;
// Or, if you'd rather, you can set the size you want to get:
// var size = 'thumbnail'; // or 'full' or 'medium' or 'large'...
// If the media supports the selected size, get it
if (attachment.sizes[size]) {
src = attachment.sizes[size].url;
}
// Do what you want with src here....
}
});