Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_after_insert_{$this->taxonomy}

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
585            *  - `rest_after_insert_category`
586            *  - `rest_after_insert_post_tag`
587            *
588            * @since 5.0.0
589            *
590            * @param WP_Term         $term     Inserted or updated term object.
591            * @param WP_REST_Request $request  Request object.
592            * @param bool            $creating True when creating a term, false when updating.
593            */
594           do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, true );
595
596           $response = $this->prepare_item_for_response( $term, $request );
597           $response = rest_ensure_response( $response );
598
599           $response->set_status( 201 );
600           $response->header( 'Location', rest_url( $this->namespace . '/' . $this->rest_base . '/' . $term->term_id ) );
601
602           return $response;
603      }
 
Line Code
690           $fields_update = $this->update_additional_fields_for_object( $term, $request );
691
692           if ( is_wp_error( $fields_update ) ) {
693                return $fields_update;
694           }
695
696           $request->set_param( 'context', 'edit' );
697
698           /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
699           do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, false );
700
701           $response = $this->prepare_item_for_response( $term, $request );
702
703           return rest_ensure_response( $response );
704      }
705
706      /**
707       * Checks if a request has access to delete the specified term.
708       *