如何对某些帖子禁用发送电子邮件通知新评论

时间:2021-04-09 作者:Sartyy

如何为某些帖子禁用发送电子邮件通知新评论

对不起我的英语

1 个回复
SO网友:Antti Koskinen

您可以使用notify_moderatornotify_post_author 用于控制是否应将评论通知发送给版主或评论作者的筛选器。

add_filter(\'notify_moderator\', \'prefix_filter_sent_comment_notification\', 10, 2);
add_filter(\'notify_post_author\', \'prefix_filter_sent_comment_notification\', 10, 2);
function prefix_filter_sent_comment_notification( bool $maybe_notify, int $comment_ID ) {
    $comment = get_comment($comment_ID);
    $comment_post = get_post($comment->comment_post_ID);
    // determine, if notification should sent or not
    // return true to send
    // to not, return false
    return some_logic_check( $comment_post ) ? false : $maybe_notify;
}