创建库的过程:
我用post格式创建帖子,我从“添加媒体”中添加图像,注意我不使用“创建库”,而是将图片插入帖子,然后更新帖子
$attachments = get_children( array( \'post_parent\' => $id, \'post_status\' => \'inherit\', \'post_type\' => \'attachment\', \'post_mime_type\' => \'image\', \'order\' => $atts[\'order\'], \'orderby\' => $atts[\'orderby\'] ) );
此代码来自
gallery_shortcode
中的函数
media.php.
它工作得很完美,但当我尝试从帖子中删除图像时,无论我如何尝试,它仍然存在。我还没有尝试过这一点,但显然从媒体中永久删除图像是可行的,但我希望这些图像仍然保留在那里。
如何从post editor中将其作为此图像的附件删除?