do_action( 'edit_comment', int $comment_id, array $data )
- Since
- 1.2.0, 4.6.0
Fires immediately after a comment is updated in the database.
Description
The hook also fires immediately before comment status transition hooks are fired.
Parameters
$dataarray- Comment data.
Fired at · 1
wp-includes/comment.php:2654wp_update_comment()
Source
View on Trac ↗View on GitHub ↗
2648 * @since 1.2.02649 * @since 4.6.0 Added the `$data` parameter.2650 *2651 * @param int $comment_id The comment ID.2652 * @param array $data Comment data.2653 */2654 do_action( 'edit_comment', $comment_id, $data );2655 2656 $comment = get_comment( $comment_id );2657 2658 wp_transition_comment_status( $comment->comment_approved, $old_status, $comment );2659 2660 return $result;
History
Introduced in 1.2.0. Unchanged from 6.7.7 through 7.1.0.
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Signature, return type and hooks compared across 5 parsed releases.
4.6.0
Added the $data parameter.from the docblock
1.2.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 6.7.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.