rest_insert_comment WordPress Action Hook
The rest_insert_comment hook is used to insert a new comment into the database. The new comment will be approved by default.
do_action( 'rest_insert_comment', WP_Comment $comment , WP_REST_Request $request , bool $creating ) #
Fires 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 |
---|---|
4.7.0 | Introduced. |