get_comment_author_url_link
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 $return The HTML-formatted comment author URL link. * * @return string */ function wp_kama_get_comment_author_url_link_filter( $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 398
return apply_filters( 'get_comment_author_url_link', $return );