WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Function Reference/get comment author url link

This page is marked as incomplete. You can help Codex by expanding it.

Description

Retrieves the HTML link of the url of the author of the current comment.

Usage

 <?php $author get_comment_author_url_link$linktext$before$after ); ?> 

Parameters

$linktext
(string) (optional) Text to display instead of the comment author's URL link.
Default: empty
$before
(string) (optional) Text or HTML to display before the URL link.
Default: empty
$after
(string) (optional) Text or HTML to display after the URL link.
Default: empty

Return Values

(string) 
The HTML link between the $before and $after parameters.

Examples

Notes

Change Log

Since: 1.5.0

Source File

get_comment_author_url_link() is located in wp-includes/comment-template.php.

Related