How do I disable all comments on my WordPress site?
Comments on new posts can be disabled under Settings/Discussion in the admin interface. Unclick “Allow people to post comments on new articles “. This, however, will not disable comments on any posts that already exist. For those, you can issue this line of SQL: mysql> UPDATE wp_posts p SET comment_status = ‘closed’, ping_status = ‘closed’ …
Continue reading ‘How do I disable all comments on my WordPress site?’ »