我正在加载upload-media.php
文件使用thickbox
在前端,用户可以将图像上传到帖子。
Question: 如何触发upload-media.php
因此,“设置特色图像”链接显示在图像管理器上,就像我们在后端单击“设置特色图像”链接时看到的一样。
Here is the code for the thickbox:
jQuery(\'.upload_media_button\').live(\'click\', function() {
current_item = jQuery(this);
container = "."+current_item.attr(\'rel\');
var request = url.media_upload+\'?type=image&TB_iframe=true\';
//alert(request);
tb_show(\'Image Manager\', request);
return false;
});
window.send_to_editor = function(html) {
var img_tag = jQuery(\'img\',html);
//var attachment_id = jQuery(\'img\',html).attr(\'class\').replace(/[^0-9]/g, \'\');
current_item.siblings(container).prepend(img_tag).css("height: auto");
tb_remove();
}
我知道我可以在提交表单后获取附件ID并设置特色图像,但这是
Plan B ;)