pre_comment_author_name filter-hook . WP 1.5.0
Filters the comment author's name cookie before it is set.
When this filter hook is evaluated in wp_filter_comment(), the comment author's name string is passed.
Usage
add_filter( 'pre_comment_author_name', 'filter_function_name_8220' ); function filter_function_name_8220( $author_cookie ){ // filter... return $author_cookie; }
- $author_cookie(string)
- The comment author name cookie.
Changelog
Since 1.5.0 | Introduced. |
Where the hook is called
pre_comment_author_name
wp-includes/comment.php 618
$comment_author = apply_filters( 'pre_comment_author_name', $_COOKIE[ 'comment_author_' . COOKIEHASH ] );
wp-includes/comment.php 2089
$commentdata['comment_author'] = apply_filters( 'pre_comment_author_name', $commentdata['comment_author'] );
Where in WP core the hook is used WordPress
wp-includes/comment.php 17
add_filter( $filter, 'sanitize_text_field' );
wp-includes/comment.php 18
add_filter( $filter, 'wp_filter_kses' );
wp-includes/comment.php 19
add_filter( $filter, '_wp_specialchars', 30 );