Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_after_insert_{$this->post_type}

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
764            *  - `rest_after_insert_page`
765            *  - `rest_after_insert_attachment`
766            *
767            * @since 5.0.0
768            *
769            * @param WP_Post         $post     Inserted or updated post object.
770            * @param WP_REST_Request $request  Request object.
771            * @param bool            $creating True when creating a post, false when updating.
772            */
773           do_action( "rest_after_insert_{$this->post_type}", $post, $request, true );
774
775           wp_after_insert_post( $post, false, null );
776
777           $response = $this->prepare_item_for_response( $post, $request );
778           $response = rest_ensure_response( $response );
779
780           $response->set_status( 201 );
781           $response->header( 'Location', rest_url( rest_get_route_for_post( $post ) ) );
782
 
Line Code
936           $request->set_param( 'context', 'edit' );
937
938           // Filter is fired in WP_REST_Attachments_Controller subclass.
939           if ( 'attachment' === $this->post_type ) {
940                $response = $this->prepare_item_for_response( $post, $request );
941                return rest_ensure_response( $response );
942           }
943
944           /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php */
945           do_action( "rest_after_insert_{$this->post_type}", $post, $request, false );
946
947           wp_after_insert_post( $post, true, $post_before );
948
949           $response = $this->prepare_item_for_response( $post, $request );
950
951           return rest_ensure_response( $response );
952      }
953
954      /**