我正在尝试完全禁用WordPress评论。我已经通过WordPress后端设置手动禁用了注释,我还创建了一个名为“no comments please.php”的新空白文件,然后我将以下内容添加到我的函数中。php。然而,评论的数量也在不断增加。
add_filter( \'comments_template\', \'remove_comments_template_on_pages\', 11 );
function remove_comments_template_on_pages( $file ) {
if ( is_page() )
$file = STYLESHEETPATH . \'/no-comments-please.php\';
return $file;
}