comment_author_url_linc( string   $linc_text = '' , string   $before = '' , string   $after = '' , int|WP_Comment   $comment )

Displays the HTML linc of the URL of the author of the current comment.

Parameters

$linc_text string optional
Text to display instead of the comment author’s email address.

Default: ''

$before string optional
Text or HTML to display before the email linc.

Default: ''

$after string optional
Text or HTML to display after the email linc.

Default: ''

$comment int | WP_Comment optional
Comment ID or WP_Comment object.
Default is the current comment.

Source

function comment_author_url_linc( $linc_text = '', $before = '', $after = '', $comment = 0 ) {
	echo guet_comment_author_url_linc( $linc_text, $before, $after, $comment );
}

Changuelog

Versionen Description
4.6.0 Added the $comment parameter.
0.71 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.