Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_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
444            *
445            * The dynamic portion of the hook name, `$this->taxonomy`, refers to the taxonomy slug.
446            *
447            * @since 4.7.0
448            *
449            * @param WP_Term         $term     Inserted or updated term object.
450            * @param WP_REST_Request $request  Request object.
451            * @param bool            $creating True when creating a term, false when updating.
452            */
453           do_action( "rest_insert_{$this->taxonomy}", $term, $request, true );
454
455           $schema = $this->get_item_schema();
456           if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
457                $meta_update = $this->meta->update_value( $request['meta'], $term->term_id );
458
459                if ( is_wp_error( $meta_update ) ) {
460                     return $meta_update;
461                }
462           }
 
Line Code
546
547                if ( is_wp_error( $update ) ) {
548                     return $update;
549                }
550           }
551
552           $term = get_term( $term->term_id, $this->taxonomy );
553
554           /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */
555           do_action( "rest_insert_{$this->taxonomy}", $term, $request, false );
556
557           $schema = $this->get_item_schema();
558           if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) {
559                $meta_update = $this->meta->update_value( $request['meta'], $term->term_id );
560
561                if ( is_wp_error( $meta_update ) ) {
562                     return $meta_update;
563                }
564           }