wppaste
WordPress

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.

Compatibility

WordPress
since 4.6.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$comment_idint
The comment ID.
$dataarray
Comment data.

Where this hook fires · 1

  • wp-includes/comment.php:3014wp_update_comment()

Source code

	 * @since 1.2.0	 * @since 4.6.0 Added the `$data` parameter.	 *	 * @param int   $comment_id The comment ID.	 * @param array $data       Comment data.	 */	do_action( 'edit_comment', $comment_id, $data ); 	$comment = get_comment( $comment_id ); 	wp_transition_comment_status( $comment->comment_approved, $old_status, $comment ); 	return $result;

Changelog

Introduced in 1.2.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 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 7.1.0 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.