Title: Remove comments
Last modified: August 20, 2016

---

# Remove comments

 *  [experc@experc.lv](https://wordpress.org/support/users/expercexperclv/)
 * (@expercexperclv)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/remove-comments-4/)
 * Hi
    I m having problems removing comments form below post(Leave a Reply, submit…).
   I have checked everywhere. Please tell how can i do that? Thank you

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Moderator [t-p](https://wordpress.org/support/users/t-p/)
 * (@t-p)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/remove-comments-4/#post-3498160)
 * Just to make sure, do you want to remove the entire comment form or just the 
   wording “Leave a Reply”?
 *  Thread Starter [experc@experc.lv](https://wordpress.org/support/users/expercexperclv/)
 * (@expercexperclv)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/remove-comments-4/#post-3498236)
 * I want to remove entire comment form from any pages and posts like this which
   are showing in bottom.
 *  Moderator [t-p](https://wordpress.org/support/users/t-p/)
 * (@t-p)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/remove-comments-4/#post-3498258)
 * try adding this snippet to your theme’s functions.php
 *     ```
       // Removes from post and pages
       add_action('init', 'remove_comment_support', 100);
   
       function remove_comment_support() {
           remove_post_type_support( 'post', 'comments' );
           remove_post_type_support( 'page', 'comments' );
       }
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove comments’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/thememagic/1.4.17/screenshot.png)
 * thememagic
 * [Support Threads](https://wordpress.org/support/theme/thememagic/)
 * [Active Topics](https://wordpress.org/support/theme/thememagic/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/thememagic/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/thememagic/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [t-p](https://wordpress.org/support/users/t-p/)
 * Last activity: [13 years, 2 months ago](https://wordpress.org/support/topic/remove-comments-4/#post-3498258)
 * Status: not resolved