wppaste
WordPress

do_action( 'comment_post', int $comment_id, int|string $comment_approved, array $commentdata )

Since
1.2.0, 4.5.0
Fires immediately after a comment is inserted into the database.

Compatibility

WordPress
since 4.5.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.
$comment_approvedint|string
1 if the comment is approved, 0 if not, 'spam' if spam.
$commentdataarray
Comment data.

Where this hook fires · 1

  • wp-includes/comment.php:2433wp_new_comment()

Source code

	 * @since 4.5.0 The `$commentdata` parameter was added.	 *	 * @param int        $comment_id       The comment ID.	 * @param int|string $comment_approved 1 if the comment is approved, 0 if not, 'spam' if spam.	 * @param array      $commentdata      Comment data.	 */	do_action( 'comment_post', $comment_id, $commentdata['comment_approved'], $commentdata ); 	return $comment_id;} /** * Sends a comment moderation notification to the comment moderator.

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.5.0
The $commentdata parameter was added.from the docblock
1.2.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 7.0.4 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.