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:2752wp_update_comment()
Source
View on Trac ↗View on GitHub ↗
2746 * @since 1.2.02747 * @since 4.6.0 Added the `$data` parameter.2748 *2749 * @param int $comment_id The comment ID.2750 * @param array $data Comment data.2751 */2752 do_action( 'edit_comment', $comment_id, $data );2753 2754 $comment = get_comment( $comment_id );2755 2756 wp_transition_comment_status( $comment->comment_approved, $old_status, $comment );2757 2758 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.9.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.