get_comment_author_url_link filter-hookWP 1.5.0

Filters the comment author's returned URL link.

Usage

add_filter( 'get_comment_author_url_link', 'wp_kama_get_comment_author_url_link_filter' );

/**
 * Function for `get_comment_author_url_link` filter-hook.
 * 
 * @param string $comment_author_url_link The HTML-formatted comment author URL link.
 *
 * @return string
 */
function wp_kama_get_comment_author_url_link_filter( $comment_author_url_link ){

	// filter...
	return $comment_author_url_link;
}
$comment_author_url_link(string)
The HTML-formatted comment author URL link.

Changelog

Since 1.5.0 Introduced.

Where the hook is called

get_comment_author_url_link()
get_comment_author_url_link
wp-includes/comment-template.php 445
return apply_filters( 'get_comment_author_url_link', $comment_author_url_link );

Where the hook is used in WordPress

Usage not found.