rest_after_insert_comment

动作钩子
do_action( 'rest_after_insert_comment', $comment, $request, true )
参数
  • (WP_Comment) $comment Inserted or updated comment object.
    Required:
  • (WP_REST_Request) $request Request object.
    Required:
  • (bool) $creating True when creating a comment, false when updating.
    Required:
定义位置
相关勾子
rest_pre_insert_commentrest_after_insert_attachmentrest_insert_commentrest_after_insert_userrest_after_insert_nav_menu_item
相关方法
wp_after_insert_postwp_insert_commentget_page_of_commentrest_filter_response_by_contextregister_widget_controlwp_filter_comment
引入
5.0.0
弃用
-

rest_after_insert_comment: 这是一个动作钩子,在一个评论被插入到数据库后被触发。它可以用来在一个评论被添加后执行额外的动作。

在通过REST API创建或更新评论后完全触发。

do_action( 'rest_after_insert_comment', $comment, $request, true );

常见问题

FAQs
查看更多 >