WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 716 | * Fires after a comment is created or updated via the REST API. |
| 717 | * |
| 718 | * @since 4.7.0 |
| 719 | * |
| 720 | * @param WP_Comment $comment Inserted or updated comment object. |
| 721 | * @param WP_REST_Request $request Request object. |
| 722 | * @param bool $creating True when creating a comment, false |
| 723 | * when updating. |
| 724 | */ |
| 725 | do_action( 'rest_insert_comment', $comment, $request, true ); |
| 726 | |
| 727 | $schema = $this->get_item_schema(); |
| 728 | |
| 729 | if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { |
| 730 | $meta_update = $this->meta->update_value( $request['meta'], $comment_id ); |
| 731 | |
| 732 | if ( is_wp_error( $meta_update ) ) { |
| 733 | return $meta_update; |
| 734 | } |
| Line | Code |
| 880 | |
| 881 | if ( isset( $request['status'] ) ) { |
| 882 | $this->handle_status_param( $request['status'], $id ); |
| 883 | } |
| 884 | } |
| 885 | |
| 886 | $comment = get_comment( $id ); |
| 887 | |
| 888 | /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php */ |
| 889 | do_action( 'rest_insert_comment', $comment, $request, false ); |
| 890 | |
| 891 | $schema = $this->get_item_schema(); |
| 892 | |
| 893 | if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { |
| 894 | $meta_update = $this->meta->update_value( $request['meta'], $id ); |
| 895 | |
| 896 | if ( is_wp_error( $meta_update ) ) { |
| 897 | return $meta_update; |
| 898 | } |