comment_author filter-hook . WP 1.2.0
Filters the comment author's name for display.
Usage
add_filter( 'comment_author', 'filter_function_name_8406', 10, 2 ); function filter_function_name_8406( $author, $comment_ID ){ // filter... return $author; }
- $author(string)
- The comment author's username.
- $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_author
wp-includes/comment-template.php 73
echo apply_filters( 'comment_author', $author, $comment->comment_ID );
Where in WP core the hook is used WordPress
wp-includes/comment-template.php 45
add_filter( 'comment_author', array( $this, 'floated_admin_avatar' ), 10, 2 );
wp-includes/comment-template.php 135
add_filter( $filter, 'wptexturize' );
wp-includes/comment-template.php 136
add_filter( $filter, 'convert_chars' );
wp-includes/comment-template.php 137
add_filter( $filter, 'esc_html' );