删除未使用的后期修订

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除未使用的后期修订相关的知识,希望对你有一定的参考价值。

Just run the following query on your WordPress database, and all revisions (As well as meta associated with it) will be deleted from your database.
  1. DELETE a,b,c
  2. FROM wp_posts a
  3. WHERE a.post_type = 'revision'
  4. LEFT JOIN wp_term_relationships b
  5. ON (a.ID = b.object_id)
  6. LEFT JOIN wp_postmeta c ON (a.ID = c.post_id);

以上是关于删除未使用的后期修订的主要内容,如果未能解决你的问题,请参考以下文章