如何通过添加媒体按钮上传图片时,设置post_id为0。(async-pload.php) 时间:2015-12-16 作者:Ohsik 当您通过添加媒体按钮上传图像时,如何将post\\u id设置为0,该按钮将对async-upload.php 而不是实际的post\\u id?非常感谢。 1 个回复 SO网友:Ohsik 终于找到了答案,并检查它对我的情况是否有效。How to upload image without post ID using the new media uploader?// Set post_id to 0 when Add Media button clicked jQuery(\'#insert-media-button\').on(\'click\', function( event ){ event.preventDefault(); wp.media.model.settings.post.id = 0; }); 这将通过添加媒体按钮将上载的所有图像设置为0,显示为(Unattached) 在后端。 文章导航