Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Created June 18, 2015 08:23
Show Gist options
  • Save jennimckinnon/542c70660834b12d6df4 to your computer and use it in GitHub Desktop.
Save jennimckinnon/542c70660834b12d6df4 to your computer and use it in GitHub Desktop.
Delete all old posts in WordPress.
DELETE FROM `wp_posts`
WHERE `post_type` = 'post'
AND DATEDIFF(NOW(), `post_date`) > #-of-days
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment