# wp_new_comment_notify_postauthor()

URL: https://chugunov.pro/api-wordpress/functions/wp_new_comment_notify_postauthor/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: функция.
Появился в версии: 4.4.0.

## Сигнатура

```php
wp_new_comment_notify_postauthor( int $comment_id ): bool
```

## Описание

Отправляет автору записи уведомление о новом комментарии.

## Параметры

- `$comment_id` `int` — обязательный. Идентификатор комментария.

## Возвращаемое значение

`bool`

## Исходный код

Файл: `wp-includes/comment.php:2473`

```php
function wp_new_comment_notify_postauthor( $comment_id ) {
	$comment = get_comment( $comment_id );
	$is_note = ( $comment && 'note' === $comment->comment_type );

	$maybe_notify = $is_note ? get_option( 'wp_notes_notify', 1 ) : get_option( 'comments_notify' );

	/**
	 * Filters whether to send the post author new comment notification emails,
	 * overriding the site setting.
	 *
	 * @since 4.4.0
	 *
	 * @param bool $maybe_notify Whether to notify the post author about the new comment.
	 * @param int  $comment_id   The ID of the comment for the notification.
	 */
	$maybe_notify = apply_filters( 'notify_post_author', $maybe_notify, $comment_id );

	/*
	 * wp_notify_postauthor() checks if notifying the author of their own comment.
	 * By default, it won't, but filters can override this.
	 */
	if ( ! $maybe_notify ) {
		return false;
	}

	// Send notifications for approved comments and all notes.
	if (
		! isset( $comment->comment_approved ) ||
		( '1' !== $comment->comment_approved && ! $is_note ) ) {
			return false;
	}

	return wp_notify_postauthor( $comment_id );
}
```

## История изменений

- 4.4.0 — Introduced.

## Связанные

Использует: [`wp_notify_postauthor`](https://chugunov.pro/api-wordpress/functions/wp_notify_postauthor/), [`apply_filters`](https://chugunov.pro/api-wordpress/functions/apply_filters/), [`get_option`](https://chugunov.pro/api-wordpress/functions/get_option/), [`get_comment`](https://chugunov.pro/api-wordpress/functions/get_comment/).
Используется в: [`wp_new_comment_via_rest_notify_postauthor`](https://chugunov.pro/api-wordpress/functions/wp_new_comment_via_rest_notify_postauthor/).

Оригинал в официальной документации: https://developer.wordpress.org/reference/functions/wp_new_comment_notify_postauthor/
