clean_object_term_cache
Fires after the object term cache has been cleaned.
Description
Parameters (2)
- 0. $object_ids (array)
- An array of object IDs.
- 1. $object_type (string)
- The object type.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'clean_object_term_cache', $object_ids, $object_type );
- The following example is for adding a hook callback.
- // define the clean_object_term_cache callback
- function action_clean_object_term_cache( $object_ids, $object_type ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'clean_object_term_cache', 'action_clean_object_term_cache', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'clean_object_term_cache', 'action_clean_object_term_cache', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/taxonomy.php
- do_action( 'clean_object_term_cache', $object_ids, $object_type );