How to Disable WordPress Comments Block

Re: Disable and Remove Comments from ALL pages without Deleting them

If you are suffering from comment spam but don’t want to delete the comments and just want to disable the comments block from all of you pages in one go, simply do the following.

Locate the file page.php fore your active theme

Find this line:

<?php comments_template(); ?>

Change it to this:

<?php // comments_template(); ?>

The comment block will no longer display and neither can any new comments be posted.

Was this helpful?