Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_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
515            *
516            * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
517            *
518            * @since 4.7.0
519            *
520            * @param WP_Post         $post     Inserted or updated post object.
521            * @param WP_REST_Request $request  Request object.
522            * @param bool            $creating True when creating a post, false when updating.
523            */
524           do_action( "rest_insert_{$this->post_type}", $post, $request, true );
525
526           $schema = $this->get_item_schema();
527
528           if ( ! empty( $schema['properties']['sticky'] ) ) {
529                if ( ! empty( $request['sticky'] ) ) {
530                     stick_post( $post_id );
531                } else {
532                     unstick_post( $post_id );
533                }
 
Line Code
642                } else {
643                     $post_id->add_data( array( 'status' => 400 ) );
644                }
645                return $post_id;
646           }
647
648           $post = get_post( $post_id );
649
650           /* This action is documented in lib/endpoints/class-wp-rest-controller.php */
651           do_action( "rest_insert_{$this->post_type}", $post, $request, false );
652
653           $schema = $this->get_item_schema();
654
655           if ( ! empty( $schema['properties']['format'] ) && ! empty( $request['format'] ) ) {
656                set_post_format( $post, $request['format'] );
657           }
658
659           if ( ! empty( $schema['properties']['featured_media'] ) && isset( $request['featured_media'] ) ) {
660                $this->handle_featured_media( $request['featured_media'], $post_id );