1、删除草稿
delete from wp_posts where post_status="draft";2、删除回收站
delete from wp_posts where post_status="trash";这里我们需要对应当前的表前缀 wp_ 如果我们的表前缀有换过这里也需要调整。
备注:如果我们不放心,可以先备份数据库。
delete from wp_posts where post_status="draft";delete from wp_posts where post_status="trash";