Changeset 62925
- Timestamp:
- 07/29/2026 06:38:25 PM (6 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/taxonomy.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r62682 r62925 2633 2633 2634 2634 /** This action is documented in wp-includes/taxonomy.php */ 2635 do_action( 'edit_terms', $term_id, $taxonomy );2635 do_action( 'edit_terms', $term_id, $taxonomy, $args ); 2636 2636 $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) ); 2637 2637 2638 2638 /** This action is documented in wp-includes/taxonomy.php */ 2639 do_action( 'edited_terms', $term_id, $taxonomy );2639 do_action( 'edited_terms', $term_id, $taxonomy, $args ); 2640 2640 } 2641 2641 … … 3495 3495 3496 3496 /** This filter is documented in wp-includes/taxonomy.php */ 3497 $term_id = apply_filters( 'term_id_filter', $term_id, $tt_id );3497 $term_id = apply_filters( 'term_id_filter', $term_id, $tt_id, $args ); 3498 3498 3499 3499 clean_term_cache( $term_id, $taxonomy ); … … 4250 4250 4251 4251 /** This action is documented in wp-includes/taxonomy.php */ 4252 do_action( 'edit_term_taxonomy', $tt_id, $taxonomy->name );4252 do_action( 'edit_term_taxonomy', $tt_id, $taxonomy->name, array() ); 4253 4253 $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $tt_id ) ); 4254 4254 4255 4255 /** This action is documented in wp-includes/taxonomy.php */ 4256 do_action( 'edited_term_taxonomy', $tt_id, $taxonomy->name );4256 do_action( 'edited_term_taxonomy', $tt_id, $taxonomy->name, array() ); 4257 4257 } 4258 4258 } … … 4280 4280 4281 4281 /** This action is documented in wp-includes/taxonomy.php */ 4282 do_action( 'edit_term_taxonomy', $term, $taxonomy->name );4282 do_action( 'edit_term_taxonomy', $term, $taxonomy->name, array() ); 4283 4283 $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) ); 4284 4284 4285 4285 /** This action is documented in wp-includes/taxonomy.php */ 4286 do_action( 'edited_term_taxonomy', $term, $taxonomy->name );4286 do_action( 'edited_term_taxonomy', $term, $taxonomy->name, array() ); 4287 4287 } 4288 4288 }
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)