clean_taxonomy_cache action-hook . WP 4.9.0
Fires after a taxonomy's caches have been cleaned.
Usage
add_action( 'clean_taxonomy_cache', 'action_function_name_5006' ); function action_function_name_5006( $taxonomy ){ // action... }
- $taxonomy(string)
- Taxonomy slug.
Changelog
Since 4.9.0 | Introduced. |
Where the hook is called
clean_taxonomy_cache
wp-includes/taxonomy.php 3461
do_action( 'clean_taxonomy_cache', $taxonomy );