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 |
|---|---|
| 2548 | // Seems unreachable. However, is used in the case that a term name is provided, which sanitizes to an empty string. |
| 2549 | if ( empty( $slug ) ) { |
| 2550 | $slug = sanitize_title( $slug, $term_id ); |
| 2551 | |
| 2552 | /** This action is documented in wp-includes/taxonomy.php */ |
| 2553 | do_action( 'edit_terms', $term_id, $taxonomy ); |
| 2554 | $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) ); |
| 2555 | |
| 2556 | /** This action is documented in wp-includes/taxonomy.php */ |
| 2557 | do_action( 'edited_terms', $term_id, $taxonomy ); |
| 2558 | } |
| 2559 | |
| 2560 | $tt_id = $wpdb->get_var( $wpdb->prepare( "SELECT tt.term_taxonomy_id FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id WHERE tt.taxonomy = %s AND t.term_id = %d", $taxonomy, $term_id ) ); |
| 2561 | |
| 2562 | if ( ! empty( $tt_id ) ) { |
| 2563 | return array( |
| 2564 | 'term_id' => $term_id, |
| 2565 | 'term_taxonomy_id' => $tt_id, |
| 2566 | ); |
| Line | Code |
| 3331 | * term-taxonomy relationship is updated. |
| 3332 | * |
| 3333 | * @since 2.9.0 |
| 3334 | * @since 6.1.0 The `$args` parameter was added. |
| 3335 | * |
| 3336 | * @param int $term_id Term ID. |
| 3337 | * @param string $taxonomy Taxonomy slug. |
| 3338 | * @param array $args Arguments passed to wp_update_term(). |
| 3339 | */ |
| 3340 | do_action( 'edited_terms', $term_id, $taxonomy, $args ); |
| 3341 | |
| 3342 | /** |
| 3343 | * Fires immediate before a term-taxonomy relationship is updated. |
| 3344 | * |
| 3345 | * @since 2.9.0 |
| 3346 | * @since 6.1.0 The `$args` parameter was added. |
| 3347 | * |
| 3348 | * @param int $tt_id Term taxonomy ID. |
| 3349 | * @param string $taxonomy Taxonomy slug. |