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 |
---|---|
1907 | * |
1908 | * @param array $comment_author_data { |
1909 | * An array of current commenter variables. |
1910 | * |
1911 | * @type string $comment_author The name of the current commenter, or an empty string. |
1912 | * @type string $comment_author_email The email address of the current commenter, or an empty string. |
1913 | * @type string $comment_author_url The URL address of the current commenter, or an empty string. |
1914 | * } |
1915 | */ |
1916 | return apply_filters( 'wp_get_current_commenter', compact( 'comment_author', 'comment_author_email', 'comment_author_url' ) ); |
1917 | } |
1918 |
|
1919 | /** |
1920 | * Get unapproved comment author's email. |
1921 | * |
1922 | * Used to allow the commenter to see their pending comment. |
1923 | * |
1924 | * @since 5.1.0 |
1925 | * @since 5.7.0 The window within which the author email for an unapproved comment |