WP3.5 Media Uploader-如何让它接受多幅图像?

时间:2013-01-27 作者:Paul

我想知道如何制作WP3。5媒体上载程序返回2个或多个项目attachement? 即使选择了2个项目,它也始终运行一次。代码:

$(\'.button\').on(\'click\', function(){
     var send_attachment_backup = wp.media.editor.send.attachment;
          wp.media.editor.send.attachment = function(props, attachment){                                
               myFunction(attachment.url);
          wp.media.editor.send.attachment = send_attachment_backup;
     }
     wp.media.editor.open();
});
编辑:我的错误。我正在做wp.media.editor.send.attachment = send_attachment_backup; 它只运行一次。因此,新的问题是:how to restore the original function after the latest item in the loop?

1 个回复
SO网友:david.binda

我建议你妥善处理新媒体模式整合。没有必要劫持wp。媒体编辑对象的属性,以便在插件中使用媒体模式。你可以从demo integration plugin at github

Demo #4 我想最适合你的需要

结束