comment_notification_recipients

过滤钩子
apply_filters( 'comment_notification_recipients', $emails, $comment->comment_ID )
参数
  • (string[]) $emails An array of email addresses to receive a comment notification.
    Required:
  • (string) $comment_id The comment ID as a numeric string.
    Required:
定义位置
相关勾子
comment_moderation_recipientscomment_notification_subjectcomment_notification_headerscomment_notification_textcomment_notification_notify_author
相关方法
wpmu_welcome_notificationcomment_author_ipcomment_author_email_linkcomment_author_rsswpmu_welcome_user_notificationthe_comments_navigation
引入
3.7.0
弃用
-

comment_notification_recipients: 这个过滤器允许你修改电子邮件地址列表,当有新评论发布时,这些地址将收到通知。

过滤电子邮件地址列表以接收评论通知。

默认情况下,只有文章作者收到评论通知。此筛选器允许添加其他筛选器

$emails = apply_filters( 'comment_notification_recipients', $emails, $comment->comment_ID );

常见问题

FAQs
查看更多 >