transition_comment_status action-hook . WP 2.7.0
Fires when the comment status is in transition.
Usage
add_action( 'transition_comment_status', 'action_function_name_9110', 10, 3 ); function action_function_name_9110( $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
wp-includes/comment.php 1817
do_action( 'transition_comment_status', $new_status, $old_status, $comment );
Where in WP core the hook is used WordPress
wp-includes/comment.php 266
add_action( 'transition_comment_status', '_clear_modified_cache_on_transition_comment_status', 10, 2 );