comment_notification_notify_author

过滤钩子
apply_filters( 'comment_notification_notify_author', false, $comment->comment_ID )
参数
  • (bool) $notify Whether to notify the post author of their own comment. Default false.
    Required:
  • (string) $comment_id The comment ID as a numeric string.
    Required:
定义位置
相关勾子
comment_notification_textcomment_notification_headerscomment_notification_subjectcomment_notification_recipientscomment_moderation_text
相关方法
wp_new_comment_notify_postauthorcomment_authorwpmu_welcome_notificationwp_new_comment_notify_moderatorcomment_author_ipget_comments_pagination_arrow
引入
3.8.0
弃用
-

comment_notification_notify_author: 这个过滤钩子允许开发者控制评论作者是否应该得到新评论的通知。

筛选是否通知评论作者其对自己文章的评论。

默认情况下,评论作者不会被通知他们在自己文章上的评论。此筛选器允许您覆盖该筛选器<

$notify_author = apply_filters( ‘comment_notification_notify_author’, false, $comment->comment_ID );

常见问题

FAQs
查看更多 >