wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



comment_author_link › WordPress Function

Seit0.71
Veraltetn/v
comment_author_link ( $comment_id = 0 )
Parameter:
  • (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.
    Erforderlich: Nein
    Standard:
Definiert in:
Codex:
Changelog:
  • 4.4.0

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



Quellcode

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