admin管理员组文章数量:1430643
I have created a custom plugin and there has an image upload option.
In view page:
<div class="form-group">
<label class="control-label col-sm-2">Trade Photo:</label>
<div class="col-sm-10">
<input type="button" class="btn btn-info" id="t_photo" value="Upload Photo" required>
<span id="show-image"></span>
<input type="hidden" id="trade_pic" name="trade_pic">
</div>
</div>
And is js area:
var image = wp.media.frames.file_frame = wp.media({
title: 'Upload Image for Trade Details',
button: {
text: 'Choose Image'
},
multiple: true
});
image.on('select', function() {
var selection = image.state().get('selection');
selection.map( function( getImage ) {
getImage = getImage.toJSON();
jQuery("#show-image").after("<img src=" +getImage.url+" style='height:50px;width:50px;'/>");
jQuery("#trade_pic").val(getImage.url);
});
});
image.open();
How to upload multiple images using this method? I got all images but in value, it returns only the first image? How to get all images URL with separated (,)
I have created a custom plugin and there has an image upload option.
In view page:
<div class="form-group">
<label class="control-label col-sm-2">Trade Photo:</label>
<div class="col-sm-10">
<input type="button" class="btn btn-info" id="t_photo" value="Upload Photo" required>
<span id="show-image"></span>
<input type="hidden" id="trade_pic" name="trade_pic">
</div>
</div>
And is js area:
var image = wp.media.frames.file_frame = wp.media({
title: 'Upload Image for Trade Details',
button: {
text: 'Choose Image'
},
multiple: true
});
image.on('select', function() {
var selection = image.state().get('selection');
selection.map( function( getImage ) {
getImage = getImage.toJSON();
jQuery("#show-image").after("<img src=" +getImage.url+" style='height:50px;width:50px;'/>");
jQuery("#trade_pic").val(getImage.url);
});
});
image.open();
How to upload multiple images using this method? I got all images but in value, it returns only the first image? How to get all images URL with separated (,)
Share Improve this question edited Apr 28, 2019 at 10:22 asked Apr 28, 2019 at 7:37 user155636user1556361 Answer
Reset to default 0I solved it here is my code:
image.on('select', function() {
let selection = image.state().get('selection');
let _getImage = [];
selection.map( function( getImage ) {
_getImage.push(getImage.toJSON())
getImage = getImage.toJSON();
jQuery("#show-image").after("<img src=" +getImage.url+" style='height:50px;width:50px;'/>");
})
jQuery("#trade_pic").after("<input type='hidden' name='trade_pic' value='"+_getImage.map(val=> val.url)+"'/>")
});
image.open();
本文标签: pluginsmultiple image upload using wpenqueuemedia
版权声明:本文标题:plugins - multiple image upload using wp_enqueue_media 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745544295a2662635.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论