个性化阅读
专注于IT技术分析

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

我只允许用户在帖子中发表一条评论。

我使用preprocess_comment过滤器挂钩检查/验证我的用户评论。并停止发表多条评论。

但是我无法在用户发表评论后隐藏评论表单框。当用户在帖子中发表评论时, 评论框将从页面中禁用/隐藏。

请帮助


#1


你也可以在主题中创建课程注释表单的自定义comment.php模板。检查此链接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();
    }
?>

希望对你有帮助。

赞(0)
未经允许不得转载:srcmini » 使用PHP有条件地隐藏或禁用WordPress评论框

评论 抢沙发

评论前必须登录!