我有一个插件,可以调用媒体上传程序,允许用户向页面添加图像。上传程序正在显示并拍摄图像,但它没有如我所愿将其附加到页面ID 65(或在图库中显示附加到该页面的图像)。
我是否遗漏了什么,或者这在WP中是不可能的?谢谢
jQuery(document).ready(function($){
$(\'.manage-images-button a.button-secondary\').on(\'click\', function(){
tb_show(\'Manage Front Page Images\', \'media-upload.php?referer=dd-options&TB_iframe=true&post_id=65\', false);
return false;
});
});
最合适的回答,由SO网友:David Gard 整理而成
Bizarrly,答案是简单地交换两个参数-
tb_show(\'Manage Front Page Images\', \'media-upload.php?referer=dd-options&post_id=65&TB_iframe=true\', false);