wp_new_comment_notify_postauthor

函式
wp_new_comment_notify_postauthor ( $comment_ID )
引數
  • (int) $comment_ID Comment ID.
    Required:
返回值
  • (bool) True on success, false on failure.
定義位置
相關方法
wp_new_comment_notify_moderatorwp_notify_postauthorwp_set_comment_statuswp_get_comment_statusget_comment_author
引入
4.4.0
棄用
-

wp_new_comment_notify_postauthor: 這個鉤子是用來當一個新的評論被新增到他們的文章時,向文章的作者傳送電子郵件通知。它可以用來修改電子郵件資訊或新增額外的收件人。

向文章作者傳送新評論的通知。

function wp_new_comment_notify_postauthor( $comment_ID ) {
	$comment = get_comment( $comment_ID );

	$maybe_notify = 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;
	}

	// Only send notifications for approved comments.
	if ( ! isset( $comment->comment_approved ) || '1' != $comment->comment_approved ) {
		return false;
	}

	return wp_notify_postauthor( $comment_ID );
}

常見問題

FAQs
檢視更多 >