Title: Disabling Comment Form
Last modified: August 30, 2016

---

# Disabling Comment Form

 *  [user93](https://wordpress.org/support/users/user93/)
 * (@user93)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/disabling-comment-form/)
 * I already disable the comment in the setting but when i click on a single post,
   still there’s a comment form. i don’t want to have any comment because it doesn’t
   need anymore. Is there any method i could totally disable the comments? More 
   power for those who can help me..

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

 *  Moderator [t-p](https://wordpress.org/support/users/t-p/)
 * (@t-p)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/disabling-comment-form/#post-6866518)
 *     ```
       // 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' );
       }
       ```
   
 * Just add it to your themes function file or make it a plugin.
 *  Thread Starter [user93](https://wordpress.org/support/users/user93/)
 * (@user93)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/disabling-comment-form/#post-6866527)
 * Sadly it doesn’t work after i put that codes in my themes function. now i can’t
   access my admin page anymore..
    This is the error:
 * Parse error: syntax error, unexpected $end in /…/…/…/…/…/…/…/functions.php on
   line 665..
 *  Thread Starter [user93](https://wordpress.org/support/users/user93/)
 * (@user93)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/disabling-comment-form/#post-6866528)
 * and now i fix the error., but still doesn’t work. the comment form still there..

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

The topic ‘Disabling Comment Form’ is closed to new replies.

## Tags

 * [commenting](https://wordpress.org/support/topic-tag/commenting/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 3 replies
 * 2 participants
 * Last reply from: [user93](https://wordpress.org/support/users/user93/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/disabling-comment-form/#post-6866528)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
