wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



comment_author_link › WordPress Function

Da0.71
Deprecaton/a
comment_author_link ( $comment_id = 0 )
Parametri:
  • (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.
    Richiesto: No
    Default:
Definito a:
Codex:
ChangeLog:
  • 4.4.0

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



Sorgenti

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