Home  >  Article  >  Backend Development  >  Globally disable comments in WordPress

Globally disable comments in WordPress

WBOY
WBOYOriginal
2016-07-25 09:09:43827browse
  1. /* Add the following code to the functions.php file*/
  2. function __disable_feature($data) { return false; }
  3. add_filter('comments_number', '__disable_feature');
  4. add_filter('comments_open ', '__disable_feature');
Copy code


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn