wordpress

How to disable WordPress Comment

The following code will disable commenting and trackback features of WordPress. You can completely turn off the comment feature by the following code.

But if your theme has “This post has x comments” feature this code won’t stop showing the message. For that you have to fix it by removing the code from your design.

Simply open your function.php.
If you don’t know where the file is, go to your dashboard. In Appearance menu click on “theme File Editor” If you get any warnings click on ” Understand” and go to Theme Functions (functions.php). At the end of the file paste the following code.

 

/*disable comment*/// First, this will disable support for comments and trackbacks in post types
function df_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');
      }
   }
}

//wordpress-code-completely-disable-comments-using-functions-php

add_action('admin_init', 'df_disable_comments_post_types_support');

// Then close any comments open comments on the front-end just in case
function df_disable_comments_status() {
   return false;
}
add_filter('comments_open', 'df_disable_comments_status', 20, 2);
add_filter('pings_open', 'df_disable_comments_status', 20, 2);

// Finally, hide any existing comments that are on the site. 
function df_disable_comments_hide_existing_comments($comments) {
   $comments = array();
   return $comments;
}
add_filter('comments_array', 'df_disable_comments_hide_existing_comments', 10, 2);

/*disble comment end*/

 

jaminrai

Recent Posts

10 Smart Strategies for a Secure and Enjoyable Retirement

Retiring comfortably is a goal many aspire to achieve, and with the right strategies, it’s…

17 hours ago

Troubleshooting a Slow Computer

Is your computer running frustratingly slow? Don't worry; you're not alone in facing this common…

17 hours ago

The Clever Fox and the Greedy Crow

Once, in a sunny forest, Fox and Crow were friends. One day, Crow found a…

18 hours ago

The Little Lantern and the Lost Stars

Once upon a time, in a cozy village nestled between rolling hills and whispering forests,…

1 day ago

The Lantern in the Storm

In a small village nestled between rolling hills and a winding river, there lived a…

2 days ago

Blood Donation (Redcross) PSD Editable Certificate Design Download Free

CLICK HERE TO DOWNLOAD! Description: Format: RGB Resolution: 300 px/inch Size: A4 This is Free…

7 days ago