On this page
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
$commentWP_Comment-
Inserted or updated comment object.
$requestWP_REST_Request-
Request object.
$creatingbool-
True when creating a comment, false when updating.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php. View all references
do_action( 'rest_after_insert_comment', $comment, $request, true );
Related
Used By
| Used By | Description |
|---|---|
| WP_REST_Comments_Controller::update_item() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Updates a comment. |
| WP_REST_Comments_Controller::create_item() wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php | Creates a comment. |
Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/rest_after_insert_comment