WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 550 | * - `rest_insert_category` |
| 551 | * - `rest_insert_post_tag` |
| 552 | * |
| 553 | * @since 4.7.0 |
| 554 | * |
| 555 | * @param WP_Term $term Inserted or updated term object. |
| 556 | * @param WP_REST_Request $request Request object. |
| 557 | * @param bool $creating True when creating a term, false when updating. |
| 558 | */ |
| 559 | do_action( "rest_insert_{$this->taxonomy}", $term, $request, true ); |
| 560 | |
| 561 | $schema = $this->get_item_schema(); |
| 562 | if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { |
| 563 | $meta_update = $this->meta->update_value( $request['meta'], $term->term_id ); |
| 564 | |
| 565 | if ( is_wp_error( $meta_update ) ) { |
| 566 | return $meta_update; |
| 567 | } |
| 568 | } |
| Line | Code |
| 670 | |
| 671 | if ( is_wp_error( $update ) ) { |
| 672 | return $update; |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | $term = get_term( $term->term_id, $this->taxonomy ); |
| 677 | |
| 678 | /** This action is documented in wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php */ |
| 679 | do_action( "rest_insert_{$this->taxonomy}", $term, $request, false ); |
| 680 | |
| 681 | $schema = $this->get_item_schema(); |
| 682 | if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { |
| 683 | $meta_update = $this->meta->update_value( $request['meta'], $term->term_id ); |
| 684 | |
| 685 | if ( is_wp_error( $meta_update ) ) { |
| 686 | return $meta_update; |
| 687 | } |
| 688 | } |