rest_after_insert_comment WordPress Action Hook
In WordPress, the rest_after_insert_comment hook is called after a comment is added via the REST API. This hook allows you to do something with the newly inserted comment, such as send an email notification or update a comment count.
do_action( 'rest_after_insert_comment', WP_Comment $comment , WP_REST_Request $request , bool $creating ) #
Fires completely after a comment is created or updated via the REST API.
Parameters
- $comment
(WP_Comment)Inserted or updated comment object.
- $request
(WP_REST_Request)Request object.
- $creating
(bool)True when creating a comment, false when updating.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |