WordPress: How to allow all comments?

01– Log into your phpMyAdmin (in your ISP control panel)

02– Locate your WordPress database and select it’s name from the left sidebar

03– select the SQL tab from the navigation tabs at the top

04– Inside the SQL Query field add the following code:

UPDATE wp_posts
SET comment_status = ‘open’
, ping_status = ‘open’;

05- Hit GO

Again – both options:

Turn on all comments:

UPDATE wp_posts
SET comment_status = ‘open’
, ping_status = ‘open’;

Turn off all comments:
UPDATE wp_posts
SET comment_status = ‘open’

, ping_status = ‘closed’;

 

 

Related Posts Plugin for WordPress, Blogger...