do_action( 'edited_terms', int $term_id , string $taxonomy , array $args )
Fires immediately after a term is updated in the database, but before its term-taxonomy relationship is updated.
Parameters
-
$term_id
int -
Term ID.
-
$taxonomy
string -
Taxonomy slug.
-
$args
array -
Arguments passed to wp_update_term() .
More Arguments from wp_update_term( ... $args )
Array of arguments for updating a term.
alias_of
stringSlug of the term to make this term an alias of.
Default empty string. Accepts a term slug.description
stringThe term description. Default empty string.parent
intThe id of the parent term. Default 0.slug
stringThe term slug to use. Default empty string.
More Information
The edited_terms
action is used to hook into code after a term is updated in the database.
A plugin (or theme) can register an action hook from the example below.
Source
File: wp-includes/taxonomy.php
.
View all references
do_action( 'edited_terms', $term_id, $taxonomy, $args );
Changelog
Version | Description |
---|---|
6.1.0 | The $args parameter was added. |
2.9.0 | Introduced. |