wp_new_comment_notify_postauthor()WP 4.4.0

Sends a notification of a new comment to the post author.

Uses the notify_post_author filter to determine whether the post author should be notified when a new comment is added, overriding site setting.

Хуки из функции

Возвращает

true|false. True on success, false on failure.

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

wp_new_comment_notify_postauthor( $comment_id );
$comment_id(int) (обязательный)
Comment ID.

Список изменений

С версии 4.4.0 Введена.

Код wp_new_comment_notify_postauthor() WP 6.9

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 );
}