Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我正在使用 Wordpress Media Uploader 为滑块上传幻灯片。我有一个删除按钮,按下该按钮将清除图像并输入存储 url 的字段。问题是返回媒体上传器时图像仍然可用。
当按下相同的按钮时,有没有办法从媒体上传器中删除图像?会用 jQuery 完成吗?
如果您单击每个图像下的“图库”选项卡,则已经有一个删除按钮,但链接是[POST]指向post.php.
[POST]
post.php
$("#DELETEBUTTON").click(function(){ window.location("post.php?action=delete&post=YOURATTACHMENTID&_wpnonce=YOURNONCEKEY"); });