Skip to content

Instantly share code, notes, and snippets.

@ivanmendoza
Created July 5, 2013 05:56
Show Gist options
  • Save ivanmendoza/5932247 to your computer and use it in GitHub Desktop.
Save ivanmendoza/5932247 to your computer and use it in GitHub Desktop.
Wordpress - Open comments and pings
UPDATE wp_posts SET comment_status = 'open' WHERE comment_status != 'open';
UPDATE wp_posts SET ping_status = 'open' WHERE ping_status != 'open';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment