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.
| Line | Code |
|---|---|
| 3288 | * Filters term data before it is updated in the database. |
| 3289 | * |
| 3290 | * @since 4.7.0 |
| 3291 | * |
| 3292 | * @param array $data Term data to be updated. |
| 3293 | * @param int $term_id Term ID. |
| 3294 | * @param string $taxonomy Taxonomy slug. |
| 3295 | * @param array $args Arguments passed to wp_update_term(). |
| 3296 | */ |
| 3297 | $data = apply_filters( 'wp_update_term_data', $data, $term_id, $taxonomy, $args ); |
| 3298 | |
| 3299 | $wpdb->update( $wpdb->terms, $data, compact( 'term_id' ) ); |
| 3300 | |
| 3301 | if ( empty( $slug ) ) { |
| 3302 | $slug = sanitize_title( $name, $term_id ); |
| 3303 | $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) ); |
| 3304 | } |
| 3305 | |
| 3306 | /** |