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為引數被呼叫,可以用來在評論被新增到文章中時向文章的作者傳送電子郵件通知。

過濾是否向文章作者傳送新評論通知郵件。優先順序於網站設定之上。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$maybe_notify = apply_filters( 'notify_post_author', $maybe_notify, $comment_ID );
$maybe_notify = apply_filters( 'notify_post_author', $maybe_notify, $comment_ID );
$maybe_notify = apply_filters( 'notify_post_author', $maybe_notify, $comment_ID );

常見問題

FAQs
檢視更多 >