edited_term
Fires after a term has been updated, and the term cache has been cleaned.
Description
Parameters (3)
- 0. $array (callback) =>
array( $this, 'save_term_handler' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
3
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'edited_term', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the edited_term callback
- function action_edited_term( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'edited_term', 'action_edited_term', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'edited_term', 'action_edited_term', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /sync/class.jetpack-sync-module-terms.php
- add_action( 'edited_term', array( $this, 'save_term_handler' ), 10, 3 );