Completely disable comments
The following is the list of hooks used by Frank Bultge’s plugin Remove Comments Absolutely: # Set the status on posts and pages – is_singular () add_filter( ‘the_posts’, array( $this, ‘set_comment_status’ ) ); # Close comments, if open add_filter( ‘comments_open’, array( $this, ‘close_comments’), 10, 2 ); add_filter( ‘pings_open’, array( $this, ‘close_comments’), 10, 2 ); # … Read more