Borrar revisiones de posts en Wordpress


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. DELETE a,b,c FROM wp_posts a
  2. LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
  3. LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
  4. WHERE a.post_type = 'revision'

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.