comment_author_url_link() – Displays the HTML link of the url of the author of the current comment.
You appear to be a bot. Output may be restricted
Description
Displays the HTML link of the URL of the author of the current comment.
Usage
comment_author_url_link( $linktext, $before, $after, $comment );
Parameters
- $linktext
- ( string ) optional – Optional. Text to display instead of the comment author's email address. Default empty.
- $before
- ( string ) optional – Optional. Text or HTML to display before the email link. Default empty.
- $after
- ( string ) optional – Optional. Text or HTML to display after the email link. Default empty.
- $comment
- ( int|WP_Comment ) optional – Optional. Comment ID or WP_Comment object. Default is the current comment.
Returns
void
Source
File name: wordpress/wp-includes/comment-template.php
Lines:
1 to 3 of 3
function comment_author_url_link( $linktext = '', $before = '', $after = '', $comment = 0 ) { echo get_comment_author_url_link( $linktext, $before, $after, $comment ); }