• hy,

    On the blog I made, only registrated users can post comments.
    How can I make the link

    Firstname Lastname says

    goes to author page ( for example ?author=5 ) and not to URL he entered in his profile ?
    I looked at the comment tags , but there is now such tag to work this out.

    tnx.

Viewing 1 replies (of 1 total)
  • If the comment was left by a register user you can get their ID by using the following: $comment->user_id.

    So you can build your link yourself:
    <a href="?author=<?php echo $comment->user_id ?>"><?php comment_author() ?></a>

Viewing 1 replies (of 1 total)
  • The topic ‘link to commenters author page’ is closed to new replies.