notify_post_author

过滤钩子
apply_filters( 'notify_post_author', $maybe_notify, $comment_ID )
参数
  • (bool) $maybe_notify Whether to notify the post author about the new comment.
    Required:
  • (int) $comment_ID The ID of the comment for the notification.
    Required:
定义位置
相关勾子
notify_moderatoratom_authorget_comment_authorthe_authorcomment_author
相关方法
wp_notify_postauthorwp_new_comment_notify_postauthoris_authorlist_authorswp_notify_moderatorget_the_author
引入
4.4.0
弃用
-

notify_post_author是一个WordPress的动作钩子,当一个评论被添加到一个文章时被触发。该钩子以评论ID为参数被调用,可以用来在评论被添加到文章中时向文章的作者发送电子邮件通知。

过滤是否向文章作者发送新评论通知邮件。优先级于网站设置之上。

$maybe_notify = apply_filters( 'notify_post_author', $maybe_notify, $comment_ID );

常见问题

FAQs
查看更多 >