• Resolved vmpr

    (@vmpr)


    Hi guys,

    just a simple question: It is possible to get the info if the comment_author has a userlevel >= 1?

    I want to add a small Icon to all editors, contributors, etc that shows they’re in the team.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Insert this in the comments loop of your comments template:

    <?php
    $comment_user = get_userdata($comment->user_id);
    if ( $comment_user->user_level >= 1 ) :
    ?>
    
    ~ Display this for comments from Contribs and higher ~
    
    <?php endif; ?>

    Thread Starter vmpr

    (@vmpr)

    Thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Get comment_author userlevel?’ is closed to new replies.