Disable wordpress comments API

There is much easier way to close standard WordPress comments. Just add

add_filter( 'comments_open', '__return_false' );

to your functions.php file and comments will be closed.

Leave a Comment