I am loading upload-media.php
file using thickbox
on front end where user can upload images to the post.
Question: How to I trigger the upload-media.php
so the link “set featured image” shows up on image manager, just like we see when we click on “set featured image” link on backend.
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();
}
I know I can take the attachment ID and set the featured image after form submission but that’s the Plan B 😉
To get the
"Use as featured Image"
link you have to passpost_id
to themedia-upload.php
file with the url so the request will be changed to:Make sure you add the
post_id
very first of the url. It didn’t worked for me when i added thepost_id
to the last of the url.UPDATE: Some javascript handling will be needed for the ajax response. Still working on to figure out that part. I will update my answer if i can figure it out.