WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1929 | * |
1930 | * @param array $comment_author_data { |
1931 | * An array of current commenter variables. |
1932 | * |
1933 | * @type string $comment_author The name of the current commenter, or an empty string. |
1934 | * @type string $comment_author_email The email address of the current commenter, or an empty string. |
1935 | * @type string $comment_author_url The URL address of the current commenter, or an empty string. |
1936 | * } |
1937 | */ |
1938 | return apply_filters( 'wp_get_current_commenter', compact( 'comment_author', 'comment_author_email', 'comment_author_url' ) ); |
1939 | } |
1940 |
|
1941 | /** |
1942 | * Gets unapproved comment author's email. |
1943 | * |
1944 | * Used to allow the commenter to see their pending comment. |
1945 | * |
1946 | * @since 5.1.0 |
1947 | * @since 5.7.0 The window within which the author email for an unapproved comment |