另一种确保从所有帖子类型中删除注释列的方法,而不仅仅是从页面中删除注释列的方法,请改用以下方法:
add_filter( \'comments_array\', \'wpse_19986_existing_comments\', 10, 2 );
function wpse_19986_existing_comments( $comments ) {
$comments = array();
return $comments;
}
您还可以查看
Disable Blogging plugin 这在将WordPress用作静态CMS时,广泛禁用了评论功能以及其他与博客相关的功能。