dougehe2022 2014-10-28 21:41
浏览 67

评论者应该只看到他在wordpress中的评论

I'm building a site for a research and my participants will be all logged in to use the site. I would like to make these participants able to see only their own comments, so other users' comments will be hidden.

I'm using the comments.php file with, among other things, this simple code:

<?php if ( have_comments() ) : ?>

      <ol class="commentlist">
          <?php wp_list_comments(); ?>
      </ol>

      <?php if ( ! comments_open() ) : ?>
          <p class="no-comments">Comments are closed</p>
      <?php endif; ?>

<?php endif; ?>

What do I need to place around this code to filter the comments and show them only to their owners? Thanks.

  • 写回答

1条回答 默认 最新

  • duanliexi1052 2014-10-28 21:55
    关注

    You need to edit the comments template and use a combination of this

    get_comment(get_comment_ID())->user_id;
    

    which returns the user id of whoever commented, and compare it to the current user with

    get_current_user_id();
    

    Both return 0 if the commenter wasn't registered or if the current user isn't logged in, respectively.

    评论

报告相同问题?