Created
July 5, 2013 05:56
-
-
Save ivanmendoza/5932247 to your computer and use it in GitHub Desktop.
Wordpress - Open comments and pings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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