wp-includes/comment-template.php:433Retrieves the HTML link of the URL of the author of the current comment.
$link_textstringoptional''$beforestringoptional''$afterstringoptional''$commentint|WP_Commentoptional0stringOne hook fires while get_comment_author_url_link() runs, in this order:
Filters the comment author's returned URL link.
function get_comment_author_url_link( $link_text = '', $before = '', $after = '', $comment = 0 ) { $comment_author_url = get_comment_author_url( $comment ); $display = ( '' !== $link_text ) ? $link_text : $comment_author_url; $display = str_replace( 'http://www.', '', $display ); $display = str_replace( 'http://', '', $display ); if ( str_ends_with( $display, '/' ) ) { $display = substr( $display, 0, -1 ); } $comment_author_url_link = $before . sprintf( '<a href="%1$s" rel="external">%2$s</a>', $comment_author_url, $display ) . $after; /** * Filters the comment author's returned URL link. * * @since 1.5.0 * * @param string $comment_author_url_link The HTML-formatted comment author URL link. */ return apply_filters( 'get_comment_author_url_link', $comment_author_url_link );}Introduced in 1.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/comment-template.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.