apply_filters( 'pre_comment_author_name', string $author_cookie )

Filters the comment author’s name cookie before it is set.


Description

When this filter hook is evaluated in wp_filter_comment() , the comment author’s name string is passed.


Top ↑

Parameters

$author_cookie string
The comment author name cookie.

Top ↑

Source

File: wp-includes/comment.php. View all references

$comment_author = apply_filters( 'pre_comment_author_name', $_COOKIE[ 'comment_author_' . COOKIEHASH ] );


Top ↑

Changelog

Changelog
Version Description
1.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.