WordPress Comments

How and Why to Disable Comments in WordPress

If you purchase through a link on our site, we may earn a commission. Learn more.

Quickly tailor your WordPress site's comment settings with our guide. Learn to disable comments either across your entire site or on specific posts using both Gutenberg and classic editors, streamlining your site for a better user experience.
Table of Contents
WP Engine High Performance Hosting
BionicWP Hosting

Diving into the heart of managing a WordPress site, we’ve all faced the double-edged sword of comments.

They can be a goldmine of engagement and feedback but sometimes turn into a wild garden needing constant tending, overrun by spam and off-topic chatter. It might even be that your audience has moved their conversation elsewhere, leaving your comment areas bare.

If you’re at a crossroads, pondering whether to keep WordPress comments active or not, you’re not alone.

This guide is crafted for you, drawing from real struggles and insights, aiming to streamline your site’s vibe and keep your focus on what truly matters: your content and audience.

Let’s navigate this journey together, or just jump to the “how to” section.

Are Comments in WordPress Still Relevant?

Keeping comments enabled on your WordPress site can significantly enhance user engagement and create a vibrant community around your content. Here are a few reasons why to reconsider removing comments from your WordPress site if you’re still on the fence.

Create Dialogue

Comments allow readers to share their thoughts, provide feedback, and engage in meaningful discussions directly related to your posts. This interactive dialogue can enrich the content and offer different perspectives, making your site a go-to hub for lively discussions.

Help Your SEO

Furthermore, enabling comments can be beneficial for SEO as it signals to search engines that your content is dynamic and engaging, potentially improving your site’s visibility. The additional user-generated content can introduce relevant keywords and phrases, aiding in search engine optimization.

Gather Feedback

Comments also serve as a valuable feedback mechanism, offering insights into your audience’s needs and preferences. This feedback can inform your content strategy, helping you to produce more relevant and targeted content that resonates with your audience.

Build Up Your Community

Moreover, fostering a sense of community through comments can increase reader loyalty. When readers feel their voices are heard and valued, they are more likely to return to your site and engage with your content regularly.

This engagement can lead to a stronger connection between you and your audience, enhancing your brand’s reputation and trustworthiness.

While managing comments requires an effort to moderate and maintain a positive environment, the benefits of increased engagement, SEO advantages, valuable feedback, and community building could make it a worthwhile undertaking.

Why Disable WordPress Comments?

There are several reasons you may be considering disabling comments on your WordPress site. From optimizing your visitors’ experience to avoiding legal issues, here are the top reasons I’ve come across in my experience.

1. Reduce Spam

Perhaps the most common reason is that comment sections are often targeted by spammers, leading to an influx of irrelevant content that can detract from the quality of your site.

2. Enhance Website Performance

Comments can sometimes slow down your website’s loading times. Each comment adds to the data that needs to be loaded, so disabling them may improve site speed and user experience at scale.

3. Maintain Professionalism

Comments can sometimes veer off-topic or become negative spaces, which might not align with the professional tone you want to maintain. Disabling them helps keep the focus on your content without distractions.

4. Streamline Content Management

Another reason for disabling comments on a WordPress site could be to streamline content management and moderation efforts. Managing a high volume of comments requires significant time and resources, which might be better allocated towards content creation or other site improvements.

Another reason to consider disabling comments is to protect your site from legal issues. Comments can sometimes contain defamatory content, copyrighted material, or other legally sensitive information.

By disabling comments, you reduce the risk of being held liable for such content posted by third parties on your website. This proactive approach can be especially important for websites in industries subject to strict regulatory compliance or those that wish to avoid legal entanglements related to user-generated content.

6. Enhance User Experience

Focusing on user experience and disabling comments can ensure that your content remains the central point of interaction, avoiding any distraction from potentially off-putting or irrelevant user comments.

This approach can improve the clarity and quality of the user experience, ensuring that visitors to your site are met with your curated content directly, avoiding distraction from a cluttered comment section.

7. Simplify Your Design

Disabling comments can also simplify the design and navigation of your website, making it cleaner and more focused.

Without a comments section, you can minimize distractions and ensure that visitors’ attention remains on your content, enhancing the overall aesthetic and user journey on your site. This streamlined approach can contribute to a more elegant and user-friendly website design.

8. Data Privacy

Another aspect to consider is data privacy concerns. Comments sections can inadvertently collect personal data from users, which might put a site at odds with data protection regulations like GDPR in the European Union. Disabling comments can reduce the complexity of complying with all of these regulations.

How to Disable Comments in WordPress

There are various ways to disable comments in WordPress, from simple checkboxes to custom code. Let’s take a look at your options.

Option 1: Disable Comments from the Discussion Settings

The simplest way to disable comments in WordPress is by accessing the Discussion section under Settings in your WordPress site’s dashboard.

From here, uncheck the option that allows people to post comments on new articles. This will apply globally to all posts on your site.

WordPress' discussion settings, where you can set options for post comments.
WordPress’ “Discussion Settings”, where you can set options for post comments.

To disable comments on specific posts or pages, edit the desired post and look for the Discussion box to uncheck the “Allow comments” option.

If using the block editor, this option is found in the Post tab in the right panel, with the section titled “Discussion”. If it’s not showing, enable it from the Preferences > Panels settings.

For the classic editor, it’s directly below the post as a metabox. If it’s not showing, enable it from the Screen Options up top.

Option 2: Disable Comments Programmatically

You can also disable comments in WordPress programmatically using code. This involves adding custom code snippets to your website.

There are various ways to do this, such as disabling comments site-wide, on specific post types, or removing comment support entirely from your WordPress theme.

Each approach requires a different snippet of code tailored to the specific need, whether it’s to stop comments on future posts, disable them on existing posts, or remove comment-related features and fields from the WordPress admin area.

Here are some helpful code snippets to get you started.

Disable comments on all future posts

function disable_comments_post_types_support() {
	$post_types = get_post_types();
	foreach ($post_types as $post_type) {
		if (post_type_supports($post_type, 'comments')) {
			remove_post_type_support($post_type, 'comments'); remove_post_type_support($post_type, 'trackbacks');
		}
	}
}

add_action('admin_init', 'disable_comments_post_types_support');

Disable comments on existing posts

To disable comments on all existing posts and pages, use this SQL query directly in your WordPress database (please back up your database before executing direct SQL queries):

UPDATE wp_posts SET comment_status = 'closed', ping_status = 'closed' WHERE post_type = 'post' OR post_type = 'page';

Remove the comments page from the admin menu

function remove_admin_menus() {
	remove_menu_page('edit-comments.php');
}

add_action('admin_menu', 'remove_admin_menus');
function remove_comments_admin_bar() {
	global $wp_admin_bar; $wp_admin_bar->remove_menu('comments');
}

add_action('wp_before_admin_bar_render', 'remove_comments_admin_bar');

function remove_comments_dashboard_widgets() {
	remove_meta_box('dashboard_recent_comments', 'dashboard', 'normal');
}

add_action('admin_init', 'remove_comments_dashboard_widgets');

As you can see, these code snippets offer a more comprehensive approach to managing comments on your WordPress site, from disabling comments on future posts to removing existing comment capabilities and the Comments page from the WordPress admin area.

Option 3: Disable Comments Using a Plugin

For the less technical users among us, you can disable comments on your WordPress site using a plugin.

Plugins like Disable Comments allow you to globally disable comments on your site without writing any code. This can include posts, pages, and custom post types.

It’s a user-friendly option for those who prefer not to touch any code.

You can find such plugins by searching in the WordPress plugin repository directly from your WordPress dashboard under Plugins > Add New, and then searching for “disable comments” or similar terms.

Customize WordPress Comment Management

In WordPress, there are several settings related to comments that are worth exploring for a more tailored interaction experience across your site.

As we’ve seen, these may include enabling or disabling comments for future posts, but you can also automatically close comments on articles older than a certain number of days, require users to be registered and logged in to comment, and even moderate comments before they go live.

Each setting provides a layer of control over how and when your audience can interact with your content, allowing for a balance between engagement and manageability.

Here are some of the built-in options available to you:

  • Enabling/Disabling Comments for Future Posts: Adjust settings to automatically allow or disallow comments on new articles, providing control over engagement from the outset.
  • Automatically Closing Comments: Set comments to close after articles reach a certain age, reducing the need for moderation on older content.
  • Registration Requirements: Require users to register and log in before commenting to enhance security and reduce spam.
  • Comment Moderation: Control which comments appear on your site by holding them for approval, allowing you to filter out unwanted or inappropriate content before it goes live.

The Strategic Choice to Disable Comments in WordPress

In the dynamic world of online content, the decision to enable or disable comments on your WordPress site plays a crucial role in shaping the interaction with your audience.

While disabling comments can streamline site management and enhance performance, keeping them active invites a wealth of benefits, including community engagement, valuable feedback, and a boost in SEO through lively discussions.

Whether you choose to embrace the lively discourse comments can bring or opt for a cleaner, more controlled site experience, WordPress offers the flexibility to tailor these settings to your needs. With plugins and code snippets at your disposal, customizing your comment settings has never been easier, allowing you to focus on creating content that resonates with your audience.

As you navigate the path of content management, remember that the choice of how to handle comments is just one piece of the puzzle. It’s the quality of your content and the strength of your community that truly define your site’s success.

Mark Zahra

Mark is the CEO behind the WP Mayor project. He has been using WordPress since 2012, joining the WP Mayor team in 2014. Since then, he has helped to review, test, and write about hundreds of WordPress products and services; educating the community of millions of WordPress users around the globe.

Discover more from our archives ↓

Popular articles ↓

Share Your Thoughts

Your email address will not be published. Required fields are marked *

Claim Your Free Website Tip 👇

Leave your name, email and website URL below to receive one actionable improvement tip tailored for your website within the next 24 hours.

"They identified areas for improvement that we had not previously considered." - Elliot

By providing your information, you'll also be subscribing to our weekly newsletter packed with exclusive content and insights. You can unsubscribe at any time with just one click.