clean_comment_cache action-hook . WP 4.5.0
Fires immediately after a comment has been removed from the object cache.
Usage
add_action( 'clean_comment_cache', 'action_function_name_6911' ); function action_function_name_6911( $id ){ // action... }
- $id(int)
- Comment ID.
Changelog
Since 4.5.0 | Introduced. |
Where the hook is called
clean_comment_cache
wp-includes/comment.php 3206
do_action( 'clean_comment_cache', $id );