我目前正在开发一个需要自定义内容添加/编辑模块的WordPress网站。我正在寻找wordpress中的图像上传选项,例如。在我的表单中有一个标题为“选择图像”的输入字段,当用户点击输入字段时,我希望wordpress媒体库能够弹出并能够从图库中选择一个图像。一旦用户选择图像,图像的完整URL将填入输入字段。我确信这可以做到,因为我曾经为此找到了一个代码,但我忘记了我找到它的地方。请各位帮助
先谢谢..
答案 0 :(得分:3)
以下是执行此操作的代码:
jQuery(document).ready(function() {
var orig_send_to_editor = window.send_to_editor;
jQuery('#upload_image_button').click(function() {
formfield = jQuery(this).prev('input');
tb_show('', 'media-upload.php?type=image&TB_iframe=true');
window.send_to_editor = function(html) {
var regex = /src="(.+?)"/;
var rslt =html.match(regex);
var imgurl = rslt[1];
formfield.val(imgurl);
tb_remove();
jQuery('#show_'+formfield.attr('name')).html('<img src="'+imgurl+'" width="" />')
window.send_to_editor = orig_send_to_editor;
}
return false;
});
});
以下是HTML:
<input type="hidden" name="upload_image" />
<?php $post_img = get_post_meta($post->ID,'item_image',true); ?>
<input id="upload_image_button" type="button" value="<?php echo (empty($post_img)?'Upload Image':'Change Image') ?>" />
<div id="show_upload_image"><?php echo (!empty($post_img)?"<img src='$post_img' width='100' />":'')?></div>