只有帖子作者才能回复帖子评论

时间:2017-11-01 04:53:21

标签: php wordpress

我只想发帖作者可以回复帖子评论。现在登录用户可以回复评论,但我必须将其限制为仅发布作者。我是怎么做到的 有什么帮助吗?

提前致谢

1 个答案:

答案 0 :(得分:1)

首先,您需要自定义wp_list_comments()html out put

https://digwp.com/2010/02/custom-comments-html-output/ http://www.studiograsshopper.ch/code-snippets/customising-wp_list_comments/

在以下位置检查get_current_user_id()是否等于the_author_ID()并显示html输出:

<div class="reply">
            <?php comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
        </div>