wp_new_comment_notify_moderator

函数
wp_new_comment_notify_moderator ( $comment_ID )
参数
  • (int) $comment_ID ID of the comment.
    Required:
返回值
  • (bool) True on success, false on failure.
定义位置
相关方法
wp_new_comment_notify_postauthorwp_notify_moderatorwp_new_commentwp_get_comment_statuswp_new_blog_notification
引入
4.4.0
弃用
-

wp_new_comment_notify_moderator: 这个钩子用于在有新的评论被添加并需要审核时向网站管理员发送电子邮件通知。它可以用来修改电子邮件信息或添加额外的收件人。

向评论版主发送评论审核通知。

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

	// Only send notifications for pending comments.
	$maybe_notify = ( '0' == $comment->comment_approved );

	/** This filter is documented in wp-includes/comment.php */
	$maybe_notify = apply_filters( 'notify_moderator', $maybe_notify, $comment_ID );

	if ( ! $maybe_notify ) {
		return false;
	}

	return wp_notify_moderator( $comment_ID );
}

常见问题

FAQs
查看更多 >