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 |
|---|---|
| 2980 | } |
| 2981 | |
| 2982 | $term_id = (int) $wpdb->insert_id; |
| 2983 | |
| 2984 | // Seems unreachable, However, Is used in the case that a term name is provided, which sanitizes to an empty string. |
| 2985 | if ( empty($slug) ) { |
| 2986 | $slug = sanitize_title($slug, $term_id); |
| 2987 | |
| 2988 | /** This action is documented in wp-includes/taxonomy.php */ |
| 2989 | do_action( 'edit_terms', $term_id, $taxonomy ); |
| 2990 | $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) ); |
| 2991 | |
| 2992 | /** This action is documented in wp-includes/taxonomy.php */ |
| 2993 | do_action( 'edited_terms', $term_id, $taxonomy ); |
| 2994 | } |
| 2995 | |
| 2996 | $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 ) ); |
| 2997 | |
| 2998 | if ( !empty($tt_id) ) { |
| Line | Code |
| 3549 | |
| 3550 | /** |
| 3551 | * Fires immediately before the given terms are edited. |
| 3552 | * |
| 3553 | * @since 2.9.0 |
| 3554 | * |
| 3555 | * @param int $term_id Term ID. |
| 3556 | * @param string $taxonomy Taxonomy slug. |
| 3557 | */ |
| 3558 | do_action( 'edit_terms', $term_id, $taxonomy ); |
| 3559 | $wpdb->update($wpdb->terms, compact( 'name', 'slug', 'term_group' ), compact( 'term_id' ) ); |
| 3560 | if ( empty($slug) ) { |
| 3561 | $slug = sanitize_title($name, $term_id); |
| 3562 | $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) ); |
| 3563 | } |
| 3564 | |
| 3565 | /** |
| 3566 | * Fires immediately after the given terms are edited. |
| 3567 | * |