transition_comment_status
Fires when the comment status is in transition.
Usage
add_action( 'transition_comment_status', 'wp_kama_transition_comment_status_action', 10, 3 ); /** * Function for `transition_comment_status` action-hook. * * @param int|string $new_status The new comment status. * @param int|string $old_status The old comment status. * @param WP_Comment $comment Comment object. * * @return void */ function wp_kama_transition_comment_status_action( $new_status, $old_status, $comment ){ // action... }
- $new_status(int|string)
- The new comment status.
- $old_status(int|string)
- The old comment status.
- $comment(WP_Comment)
- Comment object.
Changelog
Since 2.7.0 | Introduced. |
Where the hook is called
transition_comment_status
wp-includes/comment.php 1799
do_action( 'transition_comment_status', $new_status, $old_status, $comment );
Where the hook is used in WordPress
wp-includes/default-filters.php 315
add_action( 'transition_comment_status', '_clear_modified_cache_on_transition_comment_status', 10, 2 );