基于覆盖特定帖子的全局“用户必须登录到评论”选项(comment\\u注册),未经测试
function wpse208664_option_comment_registration($v) {
if (is_single() && (get_the_ID() == your specific post ID))
$v = 0;
return $v;
}
add_filter(\'option_comment_registration\', \'wpse208664_option_comment_registration\');