get_comment_author_email() WP 1.5.0

Отримує email автора поточного в циклі коментаря. Можна вказати ID коментаря, email автора якого потрібно отримати.

Основа для:
comment_author_email()
1 раз – 0.00031 сек
(швидко) | 50000 разів – 0.57 сек
(дуже швидко)

Хуки з функції
get_comment_author_email( $comment_ID );
$comment_ID
(число/об’єкт)
ID чи об’єкт коментаря, email автора якого потрібно отримати.


За замовчуванням: 0 – поточний коментар

Приклади

0

#1 Отримаємо email коментатора

У нас є коментарі з ID 2020, нам потрібно отримати email автора цього коментаря:

echo get_comment_author_email(2020); //> [email protected]

список змін

З версії 1.5.0Введено.
З версії 4.4.0Added ability для $comment_ID для того, щоб accept a WP_Comment object.

Код get_comment_author_email() WP 6.0.2

function get_comment_author_email( $comment_ID = 0 ) {
	$comment = get_comment( $comment_ID );

	/**
	 * Filters comment author's returned email address.
	 *
	 * @ Since 1.5.0
	 * @since 4.1.0 The `$comment_ID` and `$comment` parameters були added.
	 *
	 * @param string $comment_author_email повідомлення електронної пошти email address.
	 * @param string $comment_ID Коментарі ID як numeric string.
	 * @param WP_Comment $comment The comment object.
	 */
	return apply_filters( 'get_comment_author_email', $comment->comment_author_email, $comment->comment_ID, $comment );
}

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *