Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_after_insert_comment

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
644            * Fires completely after a comment is created or updated via the REST API.
645            *
646            * @since 5.0.0
647            *
648            * @param WP_Comment      $comment  Inserted or updated comment object.
649            * @param WP_REST_Request $request  Request object.
650            * @param bool            $creating True when creating a comment, false
651            *                                  when updating.
652            */
653           do_action( 'rest_after_insert_comment', $comment, $request, true );
654
655           $response = $this->prepare_item_for_response( $comment, $request );
656           $response = rest_ensure_response( $response );
657
658           $response->set_status( 201 );
659           $response->header( 'Location', rest_url( sprintf( '%s/%s/%d', $this->namespace, $this->rest_base, $comment_id ) ) );
660
661           return $response;
662      }
 
Line Code
768           $fields_update = $this->update_additional_fields_for_object( $comment, $request );
769
770           if ( is_wp_error( $fields_update ) ) {
771                return $fields_update;
772           }
773
774           $request->set_param( 'context', 'edit' );
775
776           /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php */
777           do_action( 'rest_after_insert_comment', $comment, $request, false );
778
779           $response = $this->prepare_item_for_response( $comment, $request );
780
781           return rest_ensure_response( $response );
782      }
783
784      /**
785       * Checks if a given request has access to delete a comment.
786       *