Please, anyone knows how can I display username aside display name on comments?
Please, anyone knows how can I display username aside display name on comments?
I found a solution:
<?php comment_author_link(); ?> - <?php if ($comment->user_id) { $user=get_userdata($comment->user_id); echo '@'.$user->user_nicename; } ?>
You must log in to post.