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
259           $fields_update = $this->update_additional_fields_for_object( $term, $request );
260
261           if ( is_wp_error( $fields_update ) ) {
262                return $fields_update;
263           }
264
265           $request->set_param( 'context', 'view' );
266
267           /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
268           do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, true );
269
270           $response = $this->prepare_item_for_response( $term, $request );
271           $response = rest_ensure_response( $response );
272
273           $response->set_status( 201 );
274           $response->header( 'Location', rest_url( $this->namespace . '/' . $this->rest_base . '/' . $term->term_id ) );
275
276           return $response;
277      }
 
Line Code
343           $fields_update = $this->update_additional_fields_for_object( $term, $request );
344
345           if ( is_wp_error( $fields_update ) ) {
346                return $fields_update;
347           }
348
349           $request->set_param( 'context', 'view' );
350
351           /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
352           do_action( "rest_after_insert_{$this->taxonomy}", $term, $request, false );
353
354           $response = $this->prepare_item_for_response( $term, $request );
355
356           return rest_ensure_response( $response );
357      }
358
359      /**
360       * Deletes a single term from a taxonomy.
361       *