HowTo enable/disable wordpress comments
HowTo enable/disable wordpress comments via PHPMyAdmin:
Enable:
UPDATE wp_posts SET comment_status = ‘open’, ping_status = ‘open’ WHERE comment_status = ‘closed’;
Disable:
UPDATE wp_posts SET comment_status = ‘closed’, ping_status = ‘closed’ WHERE comment_status = ‘open’;
