get_comment_author_url_link filter-hook . WP 1.5.0
Filters the comment author's returned URL link.
Usage
add_filter( 'get_comment_author_url_link', 'filter_function_name_2188' ); function filter_function_name_2188( $return ){ // filter... return $return; }
- $return(string)
- The HTML-formatted comment author URL link.
Changelog
Since 1.5.0 | Introduced. |
Where the hook is called
get_comment_author_url_link
wp-includes/comment-template.php 397
return apply_filters( 'get_comment_author_url_link', $return );