Skip to content

Instantly share code, notes, and snippets.

@hereswhatidid
Created November 21, 2017 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hereswhatidid/42f53aedeae3199e2bb17f62d9405127 to your computer and use it in GitHub Desktop.
Save hereswhatidid/42f53aedeae3199e2bb17f62d9405127 to your computer and use it in GitHub Desktop.
Set all comment statuses to closed in WordPress
UPDATE wp_posts
SET comment_status = 'closed'
WHERE comment_status = 'open';
UPDATE wp_posts
SET ping_status = 'closed'
WHERE ping_status = 'open';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment