关闭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;
二:修改程序
主题的function.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' );