Wordpress关闭所有评论的方法
3388
1、后台设置
进入网页Wordpress仪表盘,依此点击设置 > 讨论 > 取消勾选允许他人在新文章上发表评论
修改数据库wordpress:将 wp_posts 表 comment_status、ping_status 值改为 closed
UPDATE `wp_posts` SET `comment_status` = 'closed' WHERE `wp_posts`.`ID` >1; UPDATE `wp_posts` SET `ping_status` = 'closed' WHERE `wp_posts`.`ID` >1;
2、修改主题中源程序代码
在主题目录下的functions.php文件中添加一段代码
/**禁用博客评论功能*/ function disable_page_comments( $posts ) { if ( is_page()) { $posts[0]->comment_status = 'disabled'; $posts[0]->ping_status = 'disabled'; } return $posts; } add_filter( 'the_posts', 'disable_page_comments' );
以上就是Wordpress关闭所有评论的方法,希望对大家有所帮助。
本文网址:https://www.zztuku.com/index.php/detail-7753.html
站长图库 - Wordpress关闭所有评论的方法
申明:如有侵犯,请 联系我们 删除。
您还没有登录,请 登录 后发表评论!
提示:请勿发布广告垃圾评论,否则封号处理!!