Return to Snippet

Revision: 45177
at April 27, 2011 00:07 by derdesign


Initial Code
/* Add this code on your functions.php (or other) file */

function __disable_feature($data) { return false; }

add_filter('comments_number', '__disable_feature');

add_filter('comments_open', '__disable_feature');

Initial URL


Initial Description


Initial Title
Disable comments globally in WordPress

Initial Tags
wordpress

Initial Language
PHP