wp_get_current_commenter filter-hookWP 3.1.0

Filters the current commenter's name, email, and URL.

Usage

add_filter( 'wp_get_current_commenter', 'wp_kama_get_current_commenter_filter' );

/**
 * Function for `wp_get_current_commenter` filter-hook.
 * 
 * @param array $comment_author_data An array of current commenter variables.
 *
 * @return array
 */
function wp_kama_get_current_commenter_filter( $comment_author_data ){

	// filter...
	return $comment_author_data;
}
$comment_author_data(array)

An array of current commenter variables.

  • comment_author(string)
    The name of the current commenter, or an empty string.

  • comment_author_email(string)
    The email address of the current commenter, or an empty string.

  • comment_author_url(string)
    The URL address of the current commenter, or an empty string.

Changelog

Since 3.1.0 Introduced.

Where the hook is called

wp_get_current_commenter()
wp_get_current_commenter
wp-includes/comment.php 1919
return apply_filters( 'wp_get_current_commenter', compact( 'comment_author', 'comment_author_email', 'comment_author_url' ) );

Where the hook is used in WordPress

Usage not found.