Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_get_current_commenter

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

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  *