wpseek.com
A WordPress-centric search engine for devs and theme authors



comment_author_link › WordPress Function

Since0.71
Deprecatedn/a
comment_author_link ( $comment_id = 0 )
Parameters:
  • (int|WP_Comment) $comment_id Optional. WP_Comment or the ID of the comment for which to print the author's link. Default current comment.
    Required: No
    Default:
Defined at:
Codex:
Change Log:
  • 4.4.0

Displays the HTML link to the URL of the author of the current comment.



Source

function comment_author_link( $comment_id = 0 ) {
	echo get_comment_author_link( $comment_id );
}