Wordpress 使用 PHP 有条件地隐藏或禁用评论框

Wordpress Hide or Disable Comment Box Conditionally With PHP

我想在 post 中只允许用户发表一条评论。

我 check/validate 我的用户评论使用 preprocess_comment 过滤器挂钩。并停止多个评论。

但是我无法在用户发表评论后隐藏评论框。 当用户在 post 中发表评论时,评论框将从页面中 disable/hide。

请帮忙

您也可以在主题中创建自定义 comment.php 课程评论表单模板。 检查这个 link https://developer.wordpress.org/themes/template-files-section/partial-and-miscellaneous-template-files/comment-template/

页尾: https://developer.wordpress.org/themes/template-files-section/partial-and-miscellaneous-template-files/comment-template/#the-end

<?php
    if( YOUR_CONDITION_FUNCTION_OR_LOGIC() ){
        comment_form();
    }
?>

希望对您有所帮助。