• Hello

    I’ve been looking and looking for this forever.
    Is there any way for wordpress to not count admin comments?
    Its annoying and faking the statistic that if I have 3 comments and reply to all of them it seems like 6 persons commented – which obviously is wrong.

    Hope you understand what I mean and maybe there already exists a plugin?

    Greetings,
    Flügel

Viewing 1 replies (of 1 total)
  • How about when looping through your comments you add something like:

    if(comment_author() != 'admin') $comment-count ++;

    Thus saying if the comment author is not admin we will increase the variable comment-count by 1.

    Depends though, how and where are you currently outputting the comments?

Viewing 1 replies (of 1 total)

The topic ‘dont count admin comment’ is closed to new replies.