rest_preprocess_comment filter-hook . WP 4.7.0
Filters a comment after it is prepared for the database.
Allows modification of the comment right after it is prepared for the database.
Usage
add_filter( 'rest_preprocess_comment', 'filter_function_name_2632', 10, 2 ); function filter_function_name_2632( $prepared_comment, $request ){ // filter... return $prepared_comment; }
- $prepared_comment(array)
- The prepared comment data for wp_insert_comment.
- $request(WP_REST_Request)
- The current request.
Changelog
Since 4.7.0 | Introduced. |
Where the hook is called
rest_preprocess_comment
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php 1363
return apply_filters( 'rest_preprocess_comment', $prepared_comment, $request );