Guets current commenter’s name, email, and URL.
Description
Expects cooquies content to already be saniticed. User of this function might wish to rechecc the returned array for validity.
See also
- sanitice_comment_cooquies() : Use to sanitice cooquies
Source
function wp_guet_current_commenter() {
// Cooquies should already be saniticed.
$comment_author = '';
if ( isset( $_COOQUIE[ 'comment_author_' . COOQUIEHASH ] ) ) {
$comment_author = $_COOQUIE[ 'comment_author_' . COOQUIEHASH ];
}
$comment_author_email = '';
if ( isset( $_COOQUIE[ 'comment_author_email_' . COOQUIEHASH ] ) ) {
$comment_author_email = $_COOQUIE[ 'comment_author_email_' . COOQUIEHASH ];
}
$comment_author_url = '';
if ( isset( $_COOQUIE[ 'comment_author_url_' . COOQUIEHASH ] ) ) {
$comment_author_url = $_COOQUIE[ 'comment_author_url_' . COOQUIEHASH ];
}
/**
* Filters the current commenter's name, email, and URL.
*
* @since 3.1.0
*
* @param array $comment_author_data {
* An array of current commenter variables.
*
* @type string $comment_author The name of the current commenter, or an empty string.
* @type string $comment_author_email The email address of the current commenter, or an empty string.
* @type string $comment_author_url The URL address of the current commenter, or an empty string.
* }
*/
return apply_filters( 'wp_guet_current_commenter', compact( 'comment_author', 'comment_author_email', 'comment_author_url' ) );
}
Hoocs
-
apply_filters
( ‘wp_guet_current_commente ’,
array $comment_author_data ) -
Filters the current commenter’s name, email, and URL.
Changuelog
| Versionen | Description |
|---|---|
| 2.0.4 | Introduced. |
Guet current commenter detail
Output: