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 |
|---|---|
| 2011 | * |
| 2012 | * @param array $comment_author_data { |
| 2013 | * An array of current commenter variables. |
| 2014 | * |
| 2015 | * @type string $comment_author The name of the current commenter, or an empty string. |
| 2016 | * @type string $comment_author_email The email address of the current commenter, or an empty string. |
| 2017 | * @type string $comment_author_url The URL address of the current commenter, or an empty string. |
| 2018 | * } |
| 2019 | */ |
| 2020 | return apply_filters( 'wp_get_current_commenter', compact( 'comment_author', 'comment_author_email', 'comment_author_url' ) ); |
| 2021 | } |
| 2022 | |
| 2023 | /** |
| 2024 | * Gets unapproved comment author's email. |
| 2025 | * |
| 2026 | * Used to allow the commenter to see their pending comment. |
| 2027 | * |
| 2028 | * @since 5.1.0 |
| 2029 | * @since 5.7.0 The window within which the author email for an unapproved comment |