WC_Comments::comment_moderation_recipients()public staticWC 1.0

Modify recipient of review email.

Метод класса: WC_Comments{}

Хуков нет.

Возвращает

Массив.

Использование

$result = WC_Comments::comment_moderation_recipients( $emails, $comment_id );
$emails(массив) (обязательный)
Emails.
$comment_id(int) (обязательный)
Comment ID.

Код WC_Comments::comment_moderation_recipients() WC 8.7.0

public static function comment_moderation_recipients( $emails, $comment_id ) {
	$comment = get_comment( $comment_id );

	if ( $comment && 'product' === get_post_type( $comment->comment_post_ID ) ) {
		$emails = array( get_option( 'admin_email' ) );
	}

	return $emails;
}