comment_url filter-hook . WP 1.2.0
Filters the comment author's URL for display.
Usage
add_filter( 'comment_url', 'filter_function_name_4062', 10, 2 ); function filter_function_name_4062( $author_url, $comment_ID ){ // filter... return $author_url; }
- $author_url(string)
- The comment author's URL.
- $comment_ID(int)
- The comment ID.
Changelog
Since 1.2.0 | Introduced. |
Since 4.1.0 | The $comment_ID parameter was added. |
Where the hook is called
comment_url
wp-includes/comment-template.php 352
echo apply_filters( 'comment_url', $author_url, $comment->comment_ID );
Where in WP core the hook is used WordPress
wp-includes/comment-template.php 77
add_filter( $filter, 'wp_strip_all_tags' );
wp-includes/comment-template.php 79
add_filter( $filter, 'esc_url' );
wp-includes/comment-template.php 81
add_filter( $filter, 'wp_kses_data' );