var $ = jQuery; $(document).ready(function() { //$("***").ttt(); $('.custom_media').each(function(){ var self = $(this); $('.custom_media_upload',self).click(function() { var send_attachment_bkp = wp.media.editor.send.attachment; wp.media.editor.send.attachment = function(props, attachment) { $('.custom_media_image',self).attr('src', attachment.url); var path = "/"+attachment.url.split("/").splice(3).join("/"); $('.custom_media_url',self).val(path); $('.custom_media_id',self).val(attachment.id); wp.media.editor.send.attachment = send_attachment_bkp; } wp.media.editor.open(); return false; }); }); });