pre_comment_author_name хук-фильтр . 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.
Использование
add_filter( 'pre_comment_author_name', 'filter_function_name_767' ); function filter_function_name_767( $author_cookie ){ // filter... return $author_cookie; }
- $author_cookie(строка)
- The comment author name cookie.
Список изменений
С версии 1.5.0 | Введена. |
Где вызывается хук
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'] );
Где используется хук в ядре 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 );