wordpress禁用评论功能

后台外观- 编辑 中,选择主题对应的此文件

主题的 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' );

Leave a Reply

Your email address will not be published. Required fields are marked *