Home » Archive

Articles tagged with: enable

  Posted: Mar 27 | Filed under: Wordpress

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’;