The Internet is the oyster of many individuals. With easy access to the internet, everyone has the right to voice and express their opinion.
However, not everyone has a positive intention when it comes to voice their opinion. As a result, in the internet there are comments that are not suitable for many. Especially if you are a blogger and you are putting out content regularly, you may have experienced this already.
There are spam comments, trolls and what not. These practices render many website owners to make decisions regarding disabling comments in WordPress.
With that note, we would like to present this guide on turning off comments on WordPress. This ultimate guide will elaborate on all the available options you have when it comes to WordPress disable comments.
Before getting into the details, we will note down why it is important to disable comments in WordPress. It will give you more idea on the rationale behind turning off WordPress comments.
These are the main reasons WordPress disable comments. However, there can be many reasons for WordPress to turn off comments.
With that note, we would like to showcase the different ways you can disable comments in WordPress. In the following, we will illustrate how you can disable comments on WordPress manually and also how you can use different plugins to give you similar support.
If you are thinking how to disable comments on future posts in WordPress, you can take the following steps to activate this feature.
Once the settings are changed. Comments on your future posts will be disabled. And readers will not be able to comment on your future posts from now on.
If you are looking forward to disable comments on a Specific Page you can take the following actions to disable comments on the WordPress pages.
Similarly if you want to enable comments on a specific page, you just keep the “Allow Comments” box checked and your users will be able to make comments on that specific page only. If you think disabling content one by one is tiresome, you can also turn off and disable contents at bulk in WordPress. In the following, we will shed light on that.
If disabling comments on posts is monotonous, you can disable comments in bulk as well. In order to disable comments in bulk, take the following actions:
After applying the changes, you will be allowed to apply bulk action on the posts. In order to disable comments in bulk, click on the Comments drop-down and select “Do Not Allow” from the options. After clicking “Update” the changes will be made.
You can follow similar steps in order to disable comments on the page in bulk too.
The above mentioned processes are for disabling comments on WordPress pages and posts. However, if you want to delete comments that are already in your WordPress website then you can do the following:
By doing this, you can easily delete all the comments that are currently present on your WordPress.
If you have a requirement for disabling comments on the different media that have been used on your WordPress website that can be done too. However, the manual process of WordPress turn off comments is complex and time consuming. You can do the same thing in bulk with the help of a code snippet. Don’t be worried, all you have to do is copy paste the following code snippet in your theme’s functions.php file.
function filter_media_comment_status( $open, $post_id ) {
$post = get_post( $post_id );
if( $post->post_type == 'attachment' ) {
return false;
}
return $open;
}
add_filter( 'comments_open', 'filter_media_comment_status', 10 , 2 );
This is one way to disable comments on WordPress media. However, if the above-mentioned process is complex to you, you can disable comments with the help of plugins. In the next discussion, we will shed light on how you can use WordPress plugins to disable comments on media.
With the help of WordPress plugins, you can easily disable comments on WordPress media. There are many plugins that will do the job for you, here we will be discussing a free plugin that will help you to disable comments on WordPress media. In order to use Disable Comments plugin, you have to do the following:
With this plugin, you can easily disable all the comments on WordPress media. In the following we will talk about a few tools that will help you to WordPress turn off comments and have more command over who can or cannot comment on your blog, how long the comments remain visible, blocking specific commenters and more.
Antispam Bee is a free plugin that will help you to deal with spam comments. You can detect spam comments, remove them, and disable specific IP and even countries with the help of this plugin. This plugin is very versatile in their nature and it can save a lot of hassle for you. With the help of this plugin, you can create a safe user experience for your readers. You can read more about Antispam Bee and its features here.
Advanced noCaptcha and Invisible Captcha gives you the feature to add captcha to your blog. Even though adding captcha on comments is not soothing from the perspective of the user. But it helps you to protect your website from spam. This adds an extra layer of protection from spammers and keeps your website safe from spamming. You can put different simple captchas to prevent spammers and keep your website safe.
Comment Link Remove and Comments Tool is a plugin that you can use to automatically remove links from the comments. This plugin will help you to remove links that are given by spammers on your comment section. This tool is very helpful if you want to keep your comments on but want to restrict links from being published in the comment section. Without getting into the coding details, you can easily block links with the help of this plugin.
With the help of these tools you can create a safer environment for your users online.
From the overall write up we can get a clear idea on how we can go about when it is about disabling or turning off WordPress comments. We touched on the specification of how you can disable individual pages, posts and conduct bulk action to disable and delete comments from WordPress. We hope the article was helpful and addressed the question and queries you had.
As you already read this far, you might find the following articles relevant:
If you liked our article, follow our blog for more such content.