删除未使用的后期修订

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);

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

Wordpress:后期修订限制

使用删除与隐藏时未调用自定义动画

调用 .remove(fragment) 后片段未被删除

Docker删除报错:Error response from daemon: conflict: unable to delete 08b152afcfae (must be forced)(代码片段

如何使用钩子设置和操作自定义 svn 修订属性

以编程方式打印 git 修订版并检查未提交的更改