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 |
---|---|
606 | * Fires after a comment is created or updated via the REST API. |
607 | * |
608 | * @since 4.7.0 |
609 | * |
610 | * @param WP_Comment $comment Inserted or updated comment object. |
611 | * @param WP_REST_Request $request Request object. |
612 | * @param bool $creating True when creating a comment, false |
613 | * when updating. |
614 | */ |
615 | do_action( 'rest_insert_comment', $comment, $request, true ); |
616 |
|
617 | $schema = $this->get_item_schema(); |
618 |
|
619 | if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { |
620 | $meta_update = $this->meta->update_value( $request['meta'], $comment_id ); |
621 |
|
622 | if ( is_wp_error( $meta_update ) ) { |
623 | return $meta_update; |
624 | } |
Line | Code |
732 |
|
733 | if ( isset( $request['status'] ) ) { |
734 | $this->handle_status_param( $request['status'], $id ); |
735 | } |
736 | } |
737 |
|
738 | $comment = get_comment( $id ); |
739 |
|
740 | /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php */ |
741 | do_action( 'rest_insert_comment', $comment, $request, false ); |
742 |
|
743 | $schema = $this->get_item_schema(); |
744 |
|
745 | if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { |
746 | $meta_update = $this->meta->update_value( $request['meta'], $id ); |
747 |
|
748 | if ( is_wp_error( $meta_update ) ) { |
749 | return $meta_update; |
750 | } |