当前位置:Gxlcms > PHP教程 > 全局禁用WordPress的评论

全局禁用WordPress的评论

时间:2021-07-01 10:21:17 帮助过:27人阅读

<无详细内容>
  1. /* 将下面的代码添加到 functions.php 文件 */
  2. function __disable_feature($data) { return false; }
  3. add_filter('comments_number', '__disable_feature');
  4. add_filter('comments_open', '__disable_feature');

人气教程排行