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 |
---|---|
2947 | // Seems unreachable, However, Is used in the case that a term name is provided, which sanitizes to an empty string. |
2948 | if ( empty($slug) ) { |
2949 | $slug = sanitize_title($slug, $term_id); |
2950 |
|
2951 | /** This action is documented in wp-includes/taxonomy.php */ |
2952 | do_action( 'edit_terms', $term_id, $taxonomy ); |
2953 | $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) ); |
2954 |
|
2955 | /** This action is documented in wp-includes/taxonomy.php */ |
2956 | do_action( 'edited_terms', $term_id, $taxonomy ); |
2957 | } |
2958 |
|
2959 | $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 ) ); |
2960 |
|
2961 | if ( !empty($tt_id) ) { |
2962 | return array('term_id' => $term_id, 'term_taxonomy_id' => $tt_id); |
2963 | } |
2964 | $wpdb->insert( $wpdb->term_taxonomy, compact( 'term_id', 'taxonomy', 'description', 'parent') + array( 'count' => 0 ) ); |
2965 | $tt_id = (int) $wpdb->insert_id; |
Line | Code |
3489 |
|
3490 | /** |
3491 | * Fires immediately after the given terms are edited. |
3492 | * |
3493 | * @since 2.9.0 |
3494 | * |
3495 | * @param int $term_id Term ID |
3496 | * @param string $taxonomy Taxonomy slug. |
3497 | */ |
3498 | do_action( 'edited_terms', $term_id, $taxonomy ); |
3499 |
|
3500 | /** |
3501 | * Fires immediate before a term-taxonomy relationship is updated. |
3502 | * |
3503 | * @since 2.9.0 |
3504 | * |
3505 | * @param int $tt_id Term taxonomy ID. |
3506 | * @param string $taxonomy Taxonomy slug. |
3507 | */ |