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 |
---|---|
2499 | } |
2500 |
|
2501 | $term_id = (int) $wpdb->insert_id; |
2502 |
|
2503 | // Seems unreachable. However, is used in the case that a term name is provided, which sanitizes to an empty string. |
2504 | if ( empty( $slug ) ) { |
2505 | $slug = sanitize_title( $slug, $term_id ); |
2506 |
|
2507 | /** This action is documented in wp-includes/taxonomy.php */ |
2508 | do_action( 'edit_terms', $term_id, $taxonomy ); |
2509 | $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) ); |
2510 |
|
2511 | /** This action is documented in wp-includes/taxonomy.php */ |
2512 | do_action( 'edited_terms', $term_id, $taxonomy ); |
2513 | } |
2514 |
|
2515 | $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 ) ); |
2516 |
|
2517 | if ( ! empty( $tt_id ) ) { |
Line | Code |
3232 |
|
3233 | /** |
3234 | * Fires immediately before the given terms are edited. |
3235 | * |
3236 | * @since 2.9.0 |
3237 | * |
3238 | * @param int $term_id Term ID. |
3239 | * @param string $taxonomy Taxonomy slug. |
3240 | */ |
3241 | do_action( 'edit_terms', $term_id, $taxonomy ); |
3242 |
|
3243 | $data = compact( 'name', 'slug', 'term_group' ); |
3244 |
|
3245 | /** |
3246 | * Filters term data before it is updated in the database. |
3247 | * |
3248 | * @since 4.7.0 |
3249 | * |
3250 | * @param array $data Term data to be updated. |